intrinio-sdk 1.1.1 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +18 -8
- data/docs/ApiResponseCompaniesSearch.md +8 -0
- data/docs/ApiResponseDataTagsSearch.md +8 -0
- data/docs/ApiResponseEconomicIndicesSearch.md +8 -0
- data/docs/ApiResponseMunicipalities.md +9 -0
- data/docs/ApiResponseMunicipalitiyFinancials.md +9 -0
- data/docs/ApiResponseSICIndicesSearch.md +8 -0
- data/docs/ApiResponseSecuritiesSearch.md +8 -0
- data/docs/ApiResponseSecurityIntradayPrices.md +11 -0
- data/docs/ApiResponseStockMarketIndicesSearch.md +8 -0
- data/docs/CompanyApi.md +44 -115
- data/docs/DataTagApi.md +15 -51
- data/docs/FilingApi.md +19 -97
- data/docs/FundamentalSummary.md +1 -1
- data/docs/HistoricalDataApi.md +2 -0
- data/docs/IndexApi.md +33 -9
- data/docs/IntradayStockPrice.md +15 -0
- data/docs/Municipality.md +26 -0
- data/docs/MunicipalityApi.md +158 -0
- data/docs/MunicipalityFinancial.md +49 -0
- data/docs/RealtimeStockPrice.md +1 -1
- data/docs/SecurityApi.md +71 -4
- data/docs/StockExchangeApi.md +17 -42
- data/intrinio-sdk.gemspec +1 -1
- data/lib/intrinio-sdk.rb +14 -1
- data/lib/intrinio-sdk/api/company_api.rb +97 -154
- data/lib/intrinio-sdk/api/data_point_api.rb +1 -1
- data/lib/intrinio-sdk/api/data_tag_api.rb +27 -63
- data/lib/intrinio-sdk/api/filing_api.rb +42 -121
- data/lib/intrinio-sdk/api/fundamentals_api.rb +1 -1
- data/lib/intrinio-sdk/api/historical_data_api.rb +8 -1
- data/lib/intrinio-sdk/api/index_api.rb +73 -10
- data/lib/intrinio-sdk/api/municipality_api.rb +221 -0
- data/lib/intrinio-sdk/api/security_api.rb +117 -4
- data/lib/intrinio-sdk/api/stock_exchange_api.rb +45 -57
- data/lib/intrinio-sdk/api_client.rb +1 -1
- data/lib/intrinio-sdk/api_error.rb +1 -1
- data/lib/intrinio-sdk/configuration.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_companies.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_companies_search.rb +190 -0
- data/lib/intrinio-sdk/models/api_response_company_filings.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_company_fundamentals.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_company_historical_data.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_company_news.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_company_securities.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_data_tags.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_data_tags_search.rb +190 -0
- data/lib/intrinio-sdk/models/api_response_economic_index_historical_data.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_economic_indices.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_economic_indices_search.rb +190 -0
- data/lib/intrinio-sdk/models/api_response_filing_notes.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_filing_notes_search.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_filings.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_historical_data.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_municipalities.rb +200 -0
- data/lib/intrinio-sdk/models/api_response_municipalitiy_financials.rb +199 -0
- data/lib/intrinio-sdk/models/api_response_news.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_reported_financials.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_securities.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_securities_search.rb +190 -0
- data/lib/intrinio-sdk/models/api_response_security_historical_data.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_security_intraday_prices.rb +254 -0
- data/lib/intrinio-sdk/models/api_response_security_stock_price_adjustments.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_security_stock_prices.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_sic_index_historical_data.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_sic_indices.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_sic_indices_search.rb +190 -0
- data/lib/intrinio-sdk/models/api_response_standardized_financials.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_stock_exchange_realtime_stock_prices.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_stock_exchange_securities.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_stock_exchange_stock_price_adjustments.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_stock_exchange_stock_prices.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_stock_exchanges.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_stock_market_index_historical_data.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_stock_market_indices.rb +1 -1
- data/lib/intrinio-sdk/models/api_response_stock_market_indices_search.rb +190 -0
- data/lib/intrinio-sdk/models/company.rb +1 -1
- data/lib/intrinio-sdk/models/company_filing.rb +1 -1
- data/lib/intrinio-sdk/models/company_news.rb +1 -1
- data/lib/intrinio-sdk/models/company_news_summary.rb +1 -1
- data/lib/intrinio-sdk/models/company_summary.rb +1 -1
- data/lib/intrinio-sdk/models/data_tag.rb +1 -1
- data/lib/intrinio-sdk/models/data_tag_summary.rb +1 -1
- data/lib/intrinio-sdk/models/dividend_record.rb +1 -1
- data/lib/intrinio-sdk/models/earnings_record.rb +1 -1
- data/lib/intrinio-sdk/models/economic_index.rb +1 -1
- data/lib/intrinio-sdk/models/economic_index_summary.rb +1 -1
- data/lib/intrinio-sdk/models/filing.rb +1 -1
- data/lib/intrinio-sdk/models/filing_note.rb +1 -1
- data/lib/intrinio-sdk/models/filing_note_filing.rb +1 -1
- data/lib/intrinio-sdk/models/filing_note_summary.rb +1 -1
- data/lib/intrinio-sdk/models/filing_summary.rb +1 -1
- data/lib/intrinio-sdk/models/fundamental.rb +1 -1
- data/lib/intrinio-sdk/models/fundamental_summary.rb +2 -2
- data/lib/intrinio-sdk/models/historical_data.rb +1 -1
- data/lib/intrinio-sdk/models/intraday_stock_price.rb +259 -0
- data/lib/intrinio-sdk/models/municipality.rb +369 -0
- data/lib/intrinio-sdk/models/municipality_financial.rb +599 -0
- data/lib/intrinio-sdk/models/realtime_stock_price.rb +2 -2
- data/lib/intrinio-sdk/models/realtime_stock_price_security.rb +1 -1
- data/lib/intrinio-sdk/models/reported_financial.rb +1 -1
- data/lib/intrinio-sdk/models/reported_tag.rb +1 -1
- data/lib/intrinio-sdk/models/security.rb +1 -1
- data/lib/intrinio-sdk/models/security_screen_clause.rb +1 -1
- data/lib/intrinio-sdk/models/security_screen_group.rb +1 -1
- data/lib/intrinio-sdk/models/security_screen_result.rb +1 -1
- data/lib/intrinio-sdk/models/security_screen_result_data.rb +1 -1
- data/lib/intrinio-sdk/models/security_summary.rb +1 -1
- data/lib/intrinio-sdk/models/sic_index.rb +1 -1
- data/lib/intrinio-sdk/models/standardized_financial.rb +1 -1
- data/lib/intrinio-sdk/models/stock_exchange.rb +1 -1
- data/lib/intrinio-sdk/models/stock_market_index.rb +1 -1
- data/lib/intrinio-sdk/models/stock_market_index_summary.rb +1 -1
- data/lib/intrinio-sdk/models/stock_price.rb +1 -1
- data/lib/intrinio-sdk/models/stock_price_adjustment.rb +1 -1
- data/lib/intrinio-sdk/models/stock_price_adjustment_summary.rb +1 -1
- data/lib/intrinio-sdk/models/stock_price_summary.rb +1 -1
- data/lib/intrinio-sdk/version.rb +2 -2
- data/spec/api/company_api_spec.rb +37 -54
- data/spec/api/data_point_api_spec.rb +3 -3
- data/spec/api/data_tag_api_spec.rb +9 -19
- data/spec/api/filing_api_spec.rb +73 -12
- data/spec/api/fundamentals_api_spec.rb +6 -6
- data/spec/api/historical_data_api_spec.rb +3 -2
- data/spec/api/index_api_spec.rb +28 -19
- data/spec/api/municipality_api_spec.rb +84 -0
- data/spec/api/security_api_spec.rb +74 -13
- data/spec/api/stock_exchange_api_spec.rb +31 -23
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/api_response_companies_search_spec.rb +42 -0
- data/spec/models/api_response_companies_spec.rb +1 -1
- data/spec/models/api_response_company_filings_spec.rb +1 -1
- data/spec/models/api_response_company_fundamentals_spec.rb +1 -1
- data/spec/models/api_response_company_historical_data_spec.rb +1 -1
- data/spec/models/api_response_company_news_spec.rb +1 -1
- data/spec/models/api_response_company_securities_spec.rb +1 -1
- data/spec/models/api_response_data_tags_search_spec.rb +42 -0
- data/spec/models/api_response_data_tags_spec.rb +1 -1
- data/spec/models/api_response_economic_index_historical_data_spec.rb +1 -1
- data/spec/models/api_response_economic_indices_search_spec.rb +42 -0
- data/spec/models/api_response_economic_indices_spec.rb +1 -1
- data/spec/models/api_response_filings_spec.rb +1 -1
- data/spec/models/api_response_historical_data_spec.rb +1 -1
- data/spec/models/api_response_municipalities_spec.rb +48 -0
- data/spec/models/api_response_municipalitiy_financials_spec.rb +48 -0
- data/spec/models/api_response_news_spec.rb +1 -1
- data/spec/models/api_response_reported_financials_spec.rb +1 -1
- data/spec/models/api_response_securities_search_spec.rb +42 -0
- data/spec/models/api_response_securities_spec.rb +1 -1
- data/spec/models/api_response_security_historical_data_spec.rb +1 -1
- data/spec/models/api_response_security_intraday_prices_spec.rb +64 -0
- data/spec/models/api_response_security_stock_price_adjustments_spec.rb +1 -1
- data/spec/models/api_response_security_stock_prices_spec.rb +1 -1
- data/spec/models/api_response_sic_index_historical_data_spec.rb +1 -1
- data/spec/models/api_response_sic_indices_search_spec.rb +42 -0
- data/spec/models/api_response_sic_indices_spec.rb +1 -1
- data/spec/models/api_response_standardized_financials_spec.rb +1 -1
- data/spec/models/api_response_stock_exchange_securities_spec.rb +1 -1
- data/spec/models/api_response_stock_exchange_stock_price_adjustments_spec.rb +1 -1
- data/spec/models/api_response_stock_exchange_stock_prices_spec.rb +1 -1
- data/spec/models/api_response_stock_exchanges_spec.rb +1 -1
- data/spec/models/api_response_stock_market_index_historical_data_spec.rb +1 -1
- data/spec/models/api_response_stock_market_indices_search_spec.rb +42 -0
- data/spec/models/api_response_stock_market_indices_spec.rb +1 -1
- data/spec/models/company_filing_spec.rb +1 -1
- data/spec/models/company_news_spec.rb +1 -1
- data/spec/models/company_news_summary_spec.rb +1 -1
- data/spec/models/company_spec.rb +1 -1
- data/spec/models/company_summary_spec.rb +1 -1
- data/spec/models/data_tag_spec.rb +1 -1
- data/spec/models/data_tag_summary_spec.rb +1 -1
- data/spec/models/economic_index_spec.rb +1 -1
- data/spec/models/economic_index_summary_spec.rb +1 -1
- data/spec/models/filing_spec.rb +1 -1
- data/spec/models/filing_summary_spec.rb +1 -1
- data/spec/models/fundamental_spec.rb +1 -1
- data/spec/models/fundamental_summary_spec.rb +1 -1
- data/spec/models/historical_data_spec.rb +1 -1
- data/spec/models/intraday_stock_price_spec.rb +84 -0
- data/spec/models/municipality_financial_spec.rb +288 -0
- data/spec/models/municipality_spec.rb +150 -0
- data/spec/models/reported_financial_spec.rb +1 -1
- data/spec/models/reported_tag_spec.rb +1 -1
- data/spec/models/security_screen_clause_spec.rb +1 -1
- data/spec/models/security_screen_group_spec.rb +1 -1
- data/spec/models/security_screen_result_data_spec.rb +1 -1
- data/spec/models/security_screen_result_spec.rb +1 -1
- data/spec/models/security_spec.rb +1 -1
- data/spec/models/security_summary_spec.rb +1 -1
- data/spec/models/sic_index_spec.rb +1 -1
- data/spec/models/standardized_financial_spec.rb +1 -1
- data/spec/models/stock_exchange_spec.rb +1 -1
- data/spec/models/stock_market_index_spec.rb +1 -1
- data/spec/models/stock_market_index_summary_spec.rb +1 -1
- data/spec/models/stock_price_adjustment_spec.rb +7 -1
- data/spec/models/stock_price_adjustment_summary_spec.rb +1 -7
- data/spec/models/stock_price_spec.rb +1 -1
- data/spec/models/stock_price_summary_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +54 -3
- data/intrinio-sdk-1.1.0.gem +0 -0
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -51,7 +51,7 @@ module Intrinio
|
|
|
51
51
|
# The date and time when the data was last updated.
|
|
52
52
|
attr_accessor :updated_on
|
|
53
53
|
|
|
54
|
-
#
|
|
54
|
+
# The source of the data.
|
|
55
55
|
attr_accessor :source
|
|
56
56
|
|
|
57
57
|
attr_accessor :security
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
data/lib/intrinio-sdk/version.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.1.
|
|
6
|
+
OpenAPI spec version: 2.1.1
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
module Intrinio
|
|
14
|
-
VERSION = "
|
|
14
|
+
VERSION = "2.0.0"
|
|
15
15
|
end
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.
|
|
6
|
+
OpenAPI spec version: 2.1.0
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -32,49 +32,17 @@ describe 'CompanyApi' do
|
|
|
32
32
|
end
|
|
33
33
|
end
|
|
34
34
|
|
|
35
|
-
# unit tests for
|
|
36
|
-
#
|
|
37
|
-
# Returns Companies
|
|
35
|
+
# unit tests for get_all_companies
|
|
36
|
+
# All Companies
|
|
37
|
+
# Returns all Companies. When parameters are specified, returns matching companies.
|
|
38
38
|
# @param [Hash] opts the optional parameters
|
|
39
|
-
# @option opts [Date] :
|
|
39
|
+
# @option opts [Date] :latest_filing_date Last filing date
|
|
40
40
|
# @option opts [String] :sic Standard Industrial Classification code
|
|
41
41
|
# @option opts [String] :template Template
|
|
42
42
|
# @option opts [String] :sector Industry sector
|
|
43
43
|
# @option opts [String] :industry_category Industry category
|
|
44
44
|
# @option opts [String] :industry_group Industry group
|
|
45
|
-
# @option opts [
|
|
46
|
-
# @return [ApiResponseCompanies]
|
|
47
|
-
describe 'filter_companies test' do
|
|
48
|
-
it "should work" do
|
|
49
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
50
|
-
end
|
|
51
|
-
end
|
|
52
|
-
|
|
53
|
-
# unit tests for filter_company_fundamentals
|
|
54
|
-
# Filter Fundamentals for a Company
|
|
55
|
-
# Returns Fundamentals for the Company with the given `identifier` and matching the specified filters
|
|
56
|
-
# @param identifier A Company identifier (Ticker, CIK, LEI, Intrinio ID)
|
|
57
|
-
# @param [Hash] opts the optional parameters
|
|
58
|
-
# @option opts [Date] :filed_after Filed on or after this date
|
|
59
|
-
# @option opts [Date] :filed_before Filed on or before this date
|
|
60
|
-
# @option opts [BOOLEAN] :reported_only Only as-reported fundamentals
|
|
61
|
-
# @option opts [Integer] :fiscal_year Only for the given fiscal year
|
|
62
|
-
# @option opts [String] :statement_code Only of the given statement code
|
|
63
|
-
# @option opts [String] :type Only of the given type
|
|
64
|
-
# @option opts [Date] :start_date Only on or after the given date
|
|
65
|
-
# @option opts [Date] :end_date Only on or before the given date
|
|
66
|
-
# @option opts [String] :next_page Gets the next page of data from a previous API call
|
|
67
|
-
# @return [ApiResponseCompanyFundamentals]
|
|
68
|
-
describe 'filter_company_fundamentals test' do
|
|
69
|
-
it "should work" do
|
|
70
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
71
|
-
end
|
|
72
|
-
end
|
|
73
|
-
|
|
74
|
-
# unit tests for get_all_companies
|
|
75
|
-
# Get All Companies
|
|
76
|
-
#
|
|
77
|
-
# @param [Hash] opts the optional parameters
|
|
45
|
+
# @option opts [Float] :page_size The number of results to return
|
|
78
46
|
# @option opts [String] :next_page Gets the next page of data from a previous API call
|
|
79
47
|
# @return [ApiResponseCompanies]
|
|
80
48
|
describe 'get_all_companies test' do
|
|
@@ -84,9 +52,10 @@ describe 'CompanyApi' do
|
|
|
84
52
|
end
|
|
85
53
|
|
|
86
54
|
# unit tests for get_all_company_news
|
|
87
|
-
#
|
|
88
|
-
# Returns all
|
|
55
|
+
# All News
|
|
56
|
+
# Returns all News for all Companies
|
|
89
57
|
# @param [Hash] opts the optional parameters
|
|
58
|
+
# @option opts [Float] :page_size The number of results to return
|
|
90
59
|
# @option opts [String] :next_page Gets the next page of data from a previous API call
|
|
91
60
|
# @return [ApiResponseNews]
|
|
92
61
|
describe 'get_all_company_news test' do
|
|
@@ -96,8 +65,8 @@ describe 'CompanyApi' do
|
|
|
96
65
|
end
|
|
97
66
|
|
|
98
67
|
# unit tests for get_company
|
|
99
|
-
#
|
|
100
|
-
#
|
|
68
|
+
# Lookup Company
|
|
69
|
+
# Returns the Company with the given `identifier`
|
|
101
70
|
# @param identifier A Company identifier (Ticker, CIK, LEI, Intrinio ID)
|
|
102
71
|
# @param [Hash] opts the optional parameters
|
|
103
72
|
# @return [Company]
|
|
@@ -108,7 +77,7 @@ describe 'CompanyApi' do
|
|
|
108
77
|
end
|
|
109
78
|
|
|
110
79
|
# unit tests for get_company_data_point_number
|
|
111
|
-
#
|
|
80
|
+
# Data Point (Number) for Company
|
|
112
81
|
# Returns a numeric value for the given `tag` for the Company with the given `identifier`
|
|
113
82
|
# @param identifier A Company identifier (Ticker, CIK, LEI, Intrinio ID)
|
|
114
83
|
# @param tag An Intrinio data tag
|
|
@@ -121,7 +90,7 @@ describe 'CompanyApi' do
|
|
|
121
90
|
end
|
|
122
91
|
|
|
123
92
|
# unit tests for get_company_data_point_text
|
|
124
|
-
#
|
|
93
|
+
# Data Point (Text) for Company
|
|
125
94
|
# Returns a text value for the given `tag` for the Company with the given `identifier`
|
|
126
95
|
# @param identifier A Company identifier (Ticker, CIK, LEI, Intrinio ID)
|
|
127
96
|
# @param tag An Intrinio data tag
|
|
@@ -134,10 +103,11 @@ describe 'CompanyApi' do
|
|
|
134
103
|
end
|
|
135
104
|
|
|
136
105
|
# unit tests for get_company_filings
|
|
137
|
-
#
|
|
106
|
+
# All Filings by Company
|
|
138
107
|
# Returns a complete list of SEC filings for the Company with the given `identifier`
|
|
139
108
|
# @param identifier A Company identifier (Ticker, CIK, LEI, Intrinio ID)
|
|
140
109
|
# @param [Hash] opts the optional parameters
|
|
110
|
+
# @option opts [Float] :page_size The number of results to return
|
|
141
111
|
# @option opts [String] :next_page Gets the next page of data from a previous API call
|
|
142
112
|
# @return [ApiResponseCompanyFilings]
|
|
143
113
|
describe 'get_company_filings test' do
|
|
@@ -147,10 +117,19 @@ describe 'CompanyApi' do
|
|
|
147
117
|
end
|
|
148
118
|
|
|
149
119
|
# unit tests for get_company_fundamentals
|
|
150
|
-
#
|
|
151
|
-
# Returns all Fundamentals for the Company with the given `identifier`
|
|
120
|
+
# All Fundamentals by Company
|
|
121
|
+
# Returns all Fundamentals for the Company with the given `identifier`. Returns Fundamentals matching parameters when supplied.
|
|
152
122
|
# @param identifier A Company identifier (Ticker, CIK, LEI, Intrinio ID)
|
|
153
123
|
# @param [Hash] opts the optional parameters
|
|
124
|
+
# @option opts [Date] :filed_after Filed on or after this date
|
|
125
|
+
# @option opts [Date] :filed_before Filed on or before this date
|
|
126
|
+
# @option opts [BOOLEAN] :reported_only Only as-reported fundamentals
|
|
127
|
+
# @option opts [Integer] :fiscal_year Only for the given fiscal year
|
|
128
|
+
# @option opts [String] :statement_code Only of the given statement code
|
|
129
|
+
# @option opts [String] :type Only of the given type
|
|
130
|
+
# @option opts [Date] :start_date Only on or after the given date
|
|
131
|
+
# @option opts [Date] :end_date Only on or before the given date
|
|
132
|
+
# @option opts [Float] :page_size The number of results to return
|
|
154
133
|
# @option opts [String] :next_page Gets the next page of data from a previous API call
|
|
155
134
|
# @return [ApiResponseCompanyFundamentals]
|
|
156
135
|
describe 'get_company_fundamentals test' do
|
|
@@ -160,15 +139,17 @@ describe 'CompanyApi' do
|
|
|
160
139
|
end
|
|
161
140
|
|
|
162
141
|
# unit tests for get_company_historical_data
|
|
163
|
-
#
|
|
142
|
+
# Historical Data for Company
|
|
164
143
|
# Returns historical values for the given `tag` and the Company with the given `identifier`
|
|
165
144
|
# @param identifier A Company identifier (Ticker, CIK, LEI, Intrinio ID)
|
|
166
|
-
# @param tag
|
|
145
|
+
# @param tag An Intrinio data-tag
|
|
167
146
|
# @param [Hash] opts the optional parameters
|
|
147
|
+
# @option opts [String] :frequency Return historical data in the given frequency
|
|
168
148
|
# @option opts [String] :type Filter by type, when applicable
|
|
169
149
|
# @option opts [Date] :start_date Get historical data on or after this date
|
|
170
150
|
# @option opts [Date] :end_date Get historical data on or before this date
|
|
171
151
|
# @option opts [String] :sort_order Sort by date `asc` or `desc`
|
|
152
|
+
# @option opts [Float] :page_size The number of results to return
|
|
172
153
|
# @option opts [String] :next_page Gets the next page of data from a previous API call
|
|
173
154
|
# @return [ApiResponseCompanyHistoricalData]
|
|
174
155
|
describe 'get_company_historical_data test' do
|
|
@@ -178,10 +159,11 @@ describe 'CompanyApi' do
|
|
|
178
159
|
end
|
|
179
160
|
|
|
180
161
|
# unit tests for get_company_news
|
|
181
|
-
#
|
|
162
|
+
# All News by Company
|
|
182
163
|
# Returns news for the Company with the given `identifier`
|
|
183
164
|
# @param identifier A Company identifier (Ticker, CIK, LEI, Intrinio ID)
|
|
184
165
|
# @param [Hash] opts the optional parameters
|
|
166
|
+
# @option opts [Float] :page_size The number of results to return
|
|
185
167
|
# @option opts [String] :next_page Gets the next page of data from a previous API call
|
|
186
168
|
# @return [ApiResponseCompanyNews]
|
|
187
169
|
describe 'get_company_news test' do
|
|
@@ -191,8 +173,8 @@ describe 'CompanyApi' do
|
|
|
191
173
|
end
|
|
192
174
|
|
|
193
175
|
# unit tests for get_company_securities
|
|
194
|
-
#
|
|
195
|
-
#
|
|
176
|
+
# All Securities by Company
|
|
177
|
+
# Returns Securities for the Company with the given `identifier`
|
|
196
178
|
# @param identifier A Company identifier (Ticker, CIK, LEI, Intrinio ID)
|
|
197
179
|
# @param [Hash] opts the optional parameters
|
|
198
180
|
# @option opts [String] :next_page Gets the next page of data from a previous API call
|
|
@@ -204,7 +186,7 @@ describe 'CompanyApi' do
|
|
|
204
186
|
end
|
|
205
187
|
|
|
206
188
|
# unit tests for lookup_company_fundamental
|
|
207
|
-
# Lookup
|
|
189
|
+
# Lookup Fundamental by Company
|
|
208
190
|
# Returns the Fundamental for the Company with the given `identifier` and with the given parameters
|
|
209
191
|
# @param identifier A Company identifier (Ticker, CIK, LEI, Intrinio ID)
|
|
210
192
|
# @param statement_code The statement code
|
|
@@ -223,7 +205,8 @@ describe 'CompanyApi' do
|
|
|
223
205
|
# Searches for Companies matching the text `query`
|
|
224
206
|
# @param query Search parameters
|
|
225
207
|
# @param [Hash] opts the optional parameters
|
|
226
|
-
# @
|
|
208
|
+
# @option opts [Float] :page_size The number of results to return
|
|
209
|
+
# @return [ApiResponseCompaniesSearch]
|
|
227
210
|
describe 'search_companies test' do
|
|
228
211
|
it "should work" do
|
|
229
212
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.
|
|
6
|
+
OpenAPI spec version: 2.1.0
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -33,7 +33,7 @@ describe 'DataPointApi' do
|
|
|
33
33
|
end
|
|
34
34
|
|
|
35
35
|
# unit tests for get_data_point_number
|
|
36
|
-
#
|
|
36
|
+
# Data Point (Number)
|
|
37
37
|
# Returns a numeric value for the given `tag` and the entity with the given `identifier`
|
|
38
38
|
# @param identifier An identifier for an entity such as a Company, Security, Index, etc (Ticker, FIGI, ISIN, CUSIP, CIK, LEI, Intrinio ID)
|
|
39
39
|
# @param tag An Intrinio data tag ID or code-name
|
|
@@ -46,7 +46,7 @@ describe 'DataPointApi' do
|
|
|
46
46
|
end
|
|
47
47
|
|
|
48
48
|
# unit tests for get_data_point_text
|
|
49
|
-
#
|
|
49
|
+
# Data Point (Text)
|
|
50
50
|
# Returns a text value for the given `tag` and the entity with the given `identifier`
|
|
51
51
|
# @param identifier An identifier for an entity such as a Company, Security, Index, etc (Ticker, FIGI, ISIN, CUSIP, CIK, LEI, Intrinio ID)
|
|
52
52
|
# @param tag An Intrinio data tag ID or code-name
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.
|
|
6
|
+
OpenAPI spec version: 2.1.0
|
|
7
7
|
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
@@ -32,27 +32,16 @@ describe 'DataTagApi' do
|
|
|
32
32
|
end
|
|
33
33
|
end
|
|
34
34
|
|
|
35
|
-
# unit tests for
|
|
36
|
-
#
|
|
37
|
-
# Returns Data Tags
|
|
35
|
+
# unit tests for get_all_data_tags
|
|
36
|
+
# All Data Tags
|
|
37
|
+
# Returns all Data Tags. Returns Data Tags matching parameters when specified.
|
|
38
38
|
# @param [Hash] opts the optional parameters
|
|
39
39
|
# @option opts [String] :tag Tag
|
|
40
40
|
# @option opts [String] :type Type
|
|
41
41
|
# @option opts [String] :parent ID of tag parent
|
|
42
42
|
# @option opts [String] :statement_code Statement Code
|
|
43
43
|
# @option opts [String] :fs_template Template
|
|
44
|
-
# @option opts [
|
|
45
|
-
# @return [ApiResponseDataTags]
|
|
46
|
-
describe 'filter_data_tags test' do
|
|
47
|
-
it "should work" do
|
|
48
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
49
|
-
end
|
|
50
|
-
end
|
|
51
|
-
|
|
52
|
-
# unit tests for get_all_data_tags
|
|
53
|
-
# Get All Data Tags
|
|
54
|
-
# Returns All Data Tags
|
|
55
|
-
# @param [Hash] opts the optional parameters
|
|
44
|
+
# @option opts [Float] :page_size The number of results to return
|
|
56
45
|
# @option opts [String] :next_page Gets the next page of data from a previous API call
|
|
57
46
|
# @return [ApiResponseDataTags]
|
|
58
47
|
describe 'get_all_data_tags test' do
|
|
@@ -62,8 +51,8 @@ describe 'DataTagApi' do
|
|
|
62
51
|
end
|
|
63
52
|
|
|
64
53
|
# unit tests for get_data_tag_by_id
|
|
65
|
-
#
|
|
66
|
-
# Returns
|
|
54
|
+
# Lookup Data Tag
|
|
55
|
+
# Returns the Data Tag with the given `identifier`
|
|
67
56
|
# @param identifier The Intrinio ID or the code-name of the Data Tag
|
|
68
57
|
# @param [Hash] opts the optional parameters
|
|
69
58
|
# @return [DataTag]
|
|
@@ -78,7 +67,8 @@ describe 'DataTagApi' do
|
|
|
78
67
|
# Searches for Data Tags matching the text `query`
|
|
79
68
|
# @param query
|
|
80
69
|
# @param [Hash] opts the optional parameters
|
|
81
|
-
# @
|
|
70
|
+
# @option opts [Float] :page_size The number of results to return
|
|
71
|
+
# @return [ApiResponseDataTagsSearch]
|
|
82
72
|
describe 'search_data_tags test' do
|
|
83
73
|
it "should work" do
|
|
84
74
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|