Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 930 Bytes

File metadata and controls

29 lines (20 loc) · 930 Bytes

SubAccountMetadata

Properties

Name Type Description Notes
color str

Example

from lighter.models.sub_account_metadata import SubAccountMetadata

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

# convert the object into a dict
sub_account_metadata_dict = sub_account_metadata_instance.to_dict()
# create an instance of SubAccountMetadata from a dict
sub_account_metadata_from_dict = SubAccountMetadata.from_dict(sub_account_metadata_dict)

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