Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

GasStationPropertiesResponse.md

File metadata and controls

30 lines (21 loc) · 1.17 KB

GasStationPropertiesResponse

Properties

Name Type Description Notes
balance object [optional]
configuration GasStationConfigurationResponse [optional]

Example

from fireblocks.models.gas_station_properties_response import GasStationPropertiesResponse

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

# convert the object into a dict
gas_station_properties_response_dict = gas_station_properties_response_instance.to_dict()
# create an instance of GasStationPropertiesResponse from a dict
gas_station_properties_response_from_dict = GasStationPropertiesResponse.from_dict(gas_station_properties_response_dict)

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