Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.01 KB

File metadata and controls

32 lines (23 loc) · 1.01 KB

RespRevokeApiToken

Properties

Name Type Description Notes
code int
message str [optional]
token_id int
revoked bool

Example

from lighter.models.resp_revoke_api_token import RespRevokeApiToken

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

# convert the object into a dict
resp_revoke_api_token_dict = resp_revoke_api_token_instance.to_dict()
# create an instance of RespRevokeApiToken from a dict
resp_revoke_api_token_from_dict = RespRevokeApiToken.from_dict(resp_revoke_api_token_dict)

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