Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 883 Bytes

File metadata and controls

29 lines (20 loc) · 883 Bytes

LoginToken

Properties

Name Type Description Notes
token str The JWT token returned from a successful login [optional]

Example

from ibutsu_client.models.login_token import LoginToken

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

# convert the object into a dict
login_token_dict = login_token_instance.to_dict()
# create an instance of LoginToken from a dict
login_token_from_dict = LoginToken.from_dict(login_token_dict)

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