spec/api/security_api_spec.rb in intrinio-sdk-6.26.0 vs spec/api/security_api_spec.rb in intrinio-sdk-6.26.1

- old
+ new

@@ -1,11 +1,11 @@ =begin #Intrinio API #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://docs.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. -OpenAPI spec version: 2.34.0 +OpenAPI spec version: 2.47.3 Generated by: https://github.com/swagger-api/swagger-codegen.git Swagger Codegen version: unset =end @@ -123,29 +123,69 @@ # unit tests for get_security_insider_ownership # Institutional Ownership by Security # Returns a list of all institutional owners of a given security. # @param identifier A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) # @param [Hash] opts the optional parameters + # @option opts [String] :next_page Gets the next page of data from a previous API call # @return [ApiResponseSecurityInstitutionalOwnership] describe 'get_security_insider_ownership test' do it "should work" do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end + # unit tests for get_security_interval_movers + # Security Intervals Movers + # Returns a list of intervals for the biggest movers over the last hour interval. + # @param [Hash] opts the optional parameters + # @option opts [String] :source Realtime or 15-minute delayed contracts. + # @option opts [DateTime] :open_time The inclusive UTC date and time the interval opens at. + # @return [SecurityIntervalsMoversResult] + describe 'get_security_interval_movers test' do + it "should work" do + # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers + end + end + + # unit tests for get_security_interval_movers_change + # Security Intervals Movers By Change + # Returns a list of intervals for the biggest movers by change over the last hour interval. + # @param [Hash] opts the optional parameters + # @option opts [String] :source Realtime or 15-minute delayed contracts. + # @option opts [DateTime] :open_time The inclusive UTC date and time the interval opens at. + # @return [SecurityIntervalsMoversResult] + describe 'get_security_interval_movers_change test' do + it "should work" do + # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers + end + end + + # unit tests for get_security_interval_movers_volume + # Security Intervals Movers By Volume + # Returns a list of intervals for the biggest movers by volume over the last hour interval. + # @param [Hash] opts the optional parameters + # @option opts [String] :source Realtime or 15-minute delayed contracts. + # @option opts [DateTime] :open_time The inclusive UTC date and time the interval opens at. + # @return [SecurityIntervalsMoversResult] + describe 'get_security_interval_movers_volume test' do + it "should work" do + # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers + end + end + # unit tests for get_security_interval_prices # Interval Stock Prices for Security - # Return Open, High, Low, Close, and Volume for a particular interval for the Security with the given `identifier` + # Return open, close, high, low, volume, average price, and change ratio for a particular interval for the Security with the given `identifier` # @param identifier A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) + # @param interval_size The interval for which to return stock prices # @param [Hash] opts the optional parameters # @option opts [String] :source Return intervals from the specified data source # @option opts [Date] :start_date Return intervals starting at the specified date - # @option opts [String] :start_time Return intervals starting at the specified time on the `start_date` (24-hour in 'hh:mm' format, UTC timezone) + # @option opts [String] :start_time Return intervals starting at the specified time on the `start_date` (24-hour in 'hh:mm:ss' format) # @option opts [Date] :end_date Return intervals stopping at the specified date - # @option opts [String] :end_time Return intervals stopping at the specified time on the `end_date` (24-hour in 'hh:mm' format, UTC timezone) + # @option opts [String] :end_time Return intervals stopping at the specified time on the `end_date` (24-hour in 'hh:mm:ss' format) # @option opts [String] :timezone Returns trading times in this timezone - # @option opts [String] :interval_size The interval for which to return stock prices # @option opts [Integer] :page_size The number of results to return # @option opts [String] :next_page Gets the next page of data from a previous API call # @return [ApiResponseSecurityIntervalPrices] describe 'get_security_interval_prices test' do it "should work" do @@ -758,10 +798,23 @@ it "should work" do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end + # unit tests for get_security_replay_file + # Security Replay File + # Returns a url where the requested replay file may be downloaded from. + # @param subsource The specific source of the data being requested. + # @param date The date for the data being requested. + # @param [Hash] opts the optional parameters + # @return [SecurityReplayFileResult] + describe 'get_security_replay_file test' do + it "should work" do + # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers + end + end + # unit tests for get_security_snapshots # Realtime Stock Prices Snapshot # Returns all security snapshots for the queried interval with links to download. # @param [Hash] opts the optional parameters # @option opts [DateTime] :at_datetime The UTC date and time (with url-encoded spaces) the snapshot will cover. @@ -798,9 +851,47 @@ # @option opts [String] :frequency Return stock prices in the given frequency # @option opts [Integer] :page_size The number of results to return # @option opts [String] :next_page Gets the next page of data from a previous API call # @return [ApiResponseSecurityStockPrices] describe 'get_security_stock_prices test' do + it "should work" do + # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers + end + end + + # unit tests for get_security_trades + # Security Trades + # Returns all trades between start time and end time, up to seven days ago for the specified source. + # @param source The specific source of the data being requested. + # @param [Hash] opts the optional parameters + # @option opts [Date] :start_date The start date for the data being requested. + # @option opts [String] :start_time The start time for the data being requested. + # @option opts [Date] :end_date The end date for the data being requested. + # @option opts [String] :end_time The end time for the data being requested. + # @option opts [String] :timezone The timezone the start and end date/times use. + # @option opts [Integer] :page_size The maximum number of results to return per page. + # @option opts [String] :next_page Gets the next page of data from a previous API call + # @return [SecurityTradesResult] + describe 'get_security_trades test' do + it "should work" do + # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers + end + end + + # unit tests for get_security_trades_by_symbol + # Security Trades By Symbol + # Returns all trades for a symbol between start time and end time, up to seven days ago for the specified source. + # @param source The specific source of the data being requested. + # @param [Hash] opts the optional parameters + # @option opts [Date] :start_date The start date for the data being requested. + # @option opts [String] :start_time The start time for the data being requested. + # @option opts [Date] :end_date The end date for the data being requested. + # @option opts [String] :end_time The end time for the data being requested. + # @option opts [String] :timezone The timezone the start and end date/times use. + # @option opts [Integer] :page_size The maximum number of results to return per page. + # @option opts [String] :next_page Gets the next page of data from a previous API call + # @return [SecurityTradesResult] + describe 'get_security_trades_by_symbol test' do it "should work" do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end