docs/CompanyApi.md in intrinio-sdk-6.25.0 vs docs/CompanyApi.md in intrinio-sdk-6.26.0

- old
+ new

@@ -1511,11 +1511,11 @@ [**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/shares_outstanding_by_company_v2) [//]: # (START_OVERVIEW) -> ApiResponseCompanySharesOutstanding shares_outstanding_by_company(identifier) +> ApiResponseCompanySharesOutstanding shares_outstanding_by_company(identifier, opts) #### Shares Outstanding by Company Returns the shares outstanding reported on the front cover of the SEC 10-K and 10-Q filings. @@ -1538,11 +1538,16 @@ end company_api = Intrinio::CompanyApi.new identifier = "AAPL" -result = company_api.shares_outstanding_by_company(identifier) +opts = { + end_date_greater_than: nil, + end_date_less_than: nil +} + +result = company_api.shares_outstanding_by_company(identifier, opts) pp result ``` [//]: # (END_CODE_EXAMPLE) @@ -1554,9 +1559,11 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **identifier** | String| A Company identifier (Ticker, CIK, LEI, Intrinio ID) |   + **end_date_greater_than** | Date| Returns shares outstanding after this date. | [optional]   + **end_date_less_than** | Date| Returns shares outstanding before this date. | [optional]   [//]: # (END_PARAMETERS) ### Return type