Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 929 Bytes

File metadata and controls

31 lines (22 loc) · 929 Bytes

PendingUnlock

Properties

Name Type Description Notes
unlock_timestamp int
asset_index int
amount str

Example

from lighter.models.pending_unlock import PendingUnlock

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

# convert the object into a dict
pending_unlock_dict = pending_unlock_instance.to_dict()
# create an instance of PendingUnlock from a dict
pending_unlock_from_dict = PendingUnlock.from_dict(pending_unlock_dict)

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