Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 913 Bytes

File metadata and controls

30 lines (21 loc) · 913 Bytes

AssetValue

Properties

Name Type Description Notes
amount object [optional]
asset str currency [optional]

Example

from openapi_client.com_layer1_clients_digital_model.asset_value import AssetValue

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

# convert the object into a dict
asset_value_dict = asset_value_instance.to_dict()
# create an instance of AssetValue from a dict
asset_value_from_dict = AssetValue.from_dict(asset_value_dict)

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