Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Latest commit

 

History

History
33 lines (25 loc) · 1.81 KB

File metadata and controls

33 lines (25 loc) · 1.81 KB

GetExchangeRateByAssetsIDsRI

Properties

Name Type Description Notes
calculation_timestamp int Defines the time of the market data used to calculate the exchange rate in UNIX Timestamp. Oldest possible timestamp is 30 days.
from_asset_id str Defines the base asset Reference ID to get a rate for.
from_asset_symbol str Defines the base asset symbol to get a rate for.
rate str Defines the exchange rate between assets calculated by weighted average of the last trades in every exchange for the last 24 hours by giving more weight to exchanges with higher volume.
to_asset_id str Defines the relation asset Reference ID in which the base asset rate will be displayed.
to_asset_symbol str Defines the relation asset symbol in which the base asset rate will be displayed.

Example

from cryptoapis.models.get_exchange_rate_by_assets_ids_ri import GetExchangeRateByAssetsIDsRI

# TODO update the JSON string below
json = "{}"
# create an instance of GetExchangeRateByAssetsIDsRI from a JSON string
get_exchange_rate_by_assets_ids_ri_instance = GetExchangeRateByAssetsIDsRI.from_json(json)
# print the JSON string representation of the object
print GetExchangeRateByAssetsIDsRI.to_json()

# convert the object into a dict
get_exchange_rate_by_assets_ids_ri_dict = get_exchange_rate_by_assets_ids_ri_instance.to_dict()
# create an instance of GetExchangeRateByAssetsIDsRI from a dict
get_exchange_rate_by_assets_ids_ri_form_dict = get_exchange_rate_by_assets_ids_ri.from_dict(get_exchange_rate_by_assets_ids_ri_dict)

[Back to Model list] [Back to API list] [Back to README]