Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 938 Bytes

File metadata and controls

31 lines (22 loc) · 938 Bytes

AssetDetails

Properties

Name Type Description Notes
code int
message str [optional]
asset_details List[Asset]

Example

from lighter.models.asset_details import AssetDetails

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

# convert the object into a dict
asset_details_dict = asset_details_instance.to_dict()
# create an instance of AssetDetails from a dict
asset_details_from_dict = AssetDetails.from_dict(asset_details_dict)

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