Files
ritmex-bot/docs/lighter/lighter-python-main/docs/ReqGetAssetDetails.md
T

950 B

ReqGetAssetDetails

Properties

Name Type Description Notes
asset_id int [optional]

Example

from lighter.models.req_get_asset_details import ReqGetAssetDetails

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

# convert the object into a dict
req_get_asset_details_dict = req_get_asset_details_instance.to_dict()
# create an instance of ReqGetAssetDetails from a dict
req_get_asset_details_from_dict = ReqGetAssetDetails.from_dict(req_get_asset_details_dict)

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