mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-09 16:28:06 +00:00
967 B
967 B
TransferFeeInfo
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| code | int | ||
| message | str | [optional] | |
| transfer_fee_usdc | int |
Example
from lighter.models.transfer_fee_info import TransferFeeInfo
# TODO update the JSON string below
json = "{}"
# create an instance of TransferFeeInfo from a JSON string
transfer_fee_info_instance = TransferFeeInfo.from_json(json)
# print the JSON string representation of the object
print(TransferFeeInfo.to_json())
# convert the object into a dict
transfer_fee_info_dict = transfer_fee_info_instance.to_dict()
# create an instance of TransferFeeInfo from a dict
transfer_fee_info_from_dict = TransferFeeInfo.from_dict(transfer_fee_info_dict)