Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.13 KB

File metadata and controls

34 lines (25 loc) · 1.13 KB

ReqGetAccountTxs

Properties

Name Type Description Notes
index int [optional]
limit int [optional]
by str [optional]
value str [optional]
auth str made optional to support header auth clients [optional]
types List[int] [optional]

Example

from lighter.models.req_get_account_txs import ReqGetAccountTxs

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

# convert the object into a dict
req_get_account_txs_dict = req_get_account_txs_instance.to_dict()
# create an instance of ReqGetAccountTxs from a dict
req_get_account_txs_from_dict = ReqGetAccountTxs.from_dict(req_get_account_txs_dict)

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