docs/SecurityApi.md in intrinio-sdk-5.6.4 vs docs/SecurityApi.md in intrinio-sdk-5.7.0
- old
+ new
@@ -121,10 +121,11 @@
composite_figi: nil,
share_class_figi: nil,
figi_unique_id: nil,
include_non_figi: false,
page_size: 100,
+ primary_listing: nil,
next_page: nil
}
result = security_api.get_all_securities(opts)
pp result
@@ -156,10 +157,11 @@
**composite_figi** | String| Return securities with the given Country Composite FIGI (<a href=\"https://www.openfigi.com/about\" target=\"_blank\">reference</a>). | [optional]
**share_class_figi** | String| Return securities with the given Global Share Class FIGI (<a href=\"https://www.openfigi.com/about\" target=\"_blank\">reference</a>). | [optional]
**figi_unique_id** | String| Return securities with the given FIGI Unique ID (<a href=\"https://www.openfigi.com/about\" target=\"_blank\">reference</a>). | [optional]
**include_non_figi** | BOOLEAN| When true, include securities that do not have a FIGI. By default, this is false. If this parameter is not specified, only securities with a FIGI are returned. | [optional] [default to false]
**page_size** | Integer| The number of results to return | [optional] [default to 100]
+ **primary_listing** | BOOLEAN| If true, the Security is the primary issue for the company, otherwise it is a secondary issue on a secondary stock exchange | [optional]
**next_page** | String| Gets the next page of data from a previous API call | [optional]
[//]: # (END_PARAMETERS)
### Return type
@@ -3636,10 +3638,10 @@
security_api = Intrinio::SecurityApi.new
identifier = "AAPL"
opts = {
- source: nil
+ source: "bats"
}
result = security_api.get_security_realtime_price(identifier, opts)
pp result
```