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

30 lines
831 B
Markdown

# ReqGetL1Tx
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**hash** | **str** | |
## Example
```python
from lighter.models.req_get_l1_tx import ReqGetL1Tx
# TODO update the JSON string below
json = "{}"
# create an instance of ReqGetL1Tx from a JSON string
req_get_l1_tx_instance = ReqGetL1Tx.from_json(json)
# print the JSON string representation of the object
print(ReqGetL1Tx.to_json())
# convert the object into a dict
req_get_l1_tx_dict = req_get_l1_tx_instance.to_dict()
# create an instance of ReqGetL1Tx from a dict
req_get_l1_tx_from_dict = ReqGetL1Tx.from_dict(req_get_l1_tx_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)