class CybridApiBank::PricesBankApi
def initialize(api_client = ApiClient.default)
def initialize(api_client = ApiClient.default) @api_client = api_client end
def list_prices(opts = {})
-
(Array-)
Options Hash:
(**opts)-
:bank_guid(String) -- The bank identifier to retrieve prices for. -
:symbol(String) -- Comma separated symbols to list prices for.
Parameters:
-
opts(Hash) -- the optional parameters
def list_prices(opts = {}) data, _status_code, _headers = list_prices_with_http_info(opts) data end
def list_prices_with_http_info(opts = {})
-
(Array<(Array- Array, Integer, Hash)>) data, response status code and response headers
Options Hash:
(**opts)-
:bank_guid(String) -- The bank identifier to retrieve prices for. -
:symbol(String) -- Comma separated symbols to list prices for.
Parameters:
-
opts(Hash) -- the optional parameters
def list_prices_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: PricesBankApi.list_prices ...' end # resource path local_var_path = '/api/prices' # query parameters query_params = opts[:query_params] || {} query_params[:'symbol'] = opts[:'symbol'] if !opts[:'symbol'].nil? query_params[:'bank_guid'] = opts[:'bank_guid'] if !opts[:'bank_guid'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'Array<SymbolPriceBankModel>' # auth_names auth_names = opts[:debug_auth_names] || ['BearerAuth', 'oauth2'] new_options = opts.merge( :operation => :"PricesBankApi.list_prices", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options) if @api_client.config.debugging @api_client.config.logger.debug "API called: PricesBankApi#list_prices\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end