You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Indicates whether editing the gas station configuration was successful
Example
fromfireblocks.models.edit_gas_station_configuration_responseimportEditGasStationConfigurationResponse# TODO update the JSON string belowjson="{}"# create an instance of EditGasStationConfigurationResponse from a JSON stringedit_gas_station_configuration_response_instance=EditGasStationConfigurationResponse.from_json(json)
# print the JSON string representation of the objectprint(EditGasStationConfigurationResponse.to_json())
# convert the object into a dictedit_gas_station_configuration_response_dict=edit_gas_station_configuration_response_instance.to_dict()
# create an instance of EditGasStationConfigurationResponse from a dictedit_gas_station_configuration_response_from_dict=EditGasStationConfigurationResponse.from_dict(edit_gas_station_configuration_response_dict)