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