Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.01 KB

File metadata and controls

35 lines (26 loc) · 1.01 KB

AccountAsset

Properties

Name Type Description Notes
symbol str
asset_id int
balance str
locked_balance str
margin_balance str
margin_mode str
multiplier str

Example

from lighter.models.account_asset import AccountAsset

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

# convert the object into a dict
account_asset_dict = account_asset_instance.to_dict()
# create an instance of AccountAsset from a dict
account_asset_from_dict = AccountAsset.from_dict(account_asset_dict)

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