Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.28 KB

File metadata and controls

30 lines (21 loc) · 1.28 KB

GasslessStandardConfigurations

The gasless configuration of the contract

Properties

Name Type Description Notes
gasless_standard_configurations Dict[str, GasslessStandardConfigurationsGaslessStandardConfigurationsValue] [optional]

Example

from fireblocks.models.gassless_standard_configurations import GasslessStandardConfigurations

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

# convert the object into a dict
gassless_standard_configurations_dict = gassless_standard_configurations_instance.to_dict()
# create an instance of GasslessStandardConfigurations from a dict
gassless_standard_configurations_from_dict = GasslessStandardConfigurations.from_dict(gassless_standard_configurations_dict)

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