| Name | Type | Description | Notes |
|---|---|---|---|
| token | str | The JWT token returned from a successful login | [optional] |
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)