Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 935 Bytes

File metadata and controls

30 lines (21 loc) · 935 Bytes

CreateToken

Properties

Name Type Description Notes
name str The name given to this token
expires str The date and time when this token expires

Example

from ibutsu_client.models.create_token import CreateToken

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

# convert the object into a dict
create_token_dict = create_token_instance.to_dict()
# create an instance of CreateToken from a dict
create_token_from_dict = CreateToken.from_dict(create_token_dict)

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