Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 917 Bytes

File metadata and controls

30 lines (21 loc) · 917 Bytes

Credentials

Properties

Name Type Description Notes
email str The e-mail address of the user
password str The password for the user

Example

from ibutsu_client.models.credentials import Credentials

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

# convert the object into a dict
credentials_dict = credentials_instance.to_dict()
# create an instance of Credentials from a dict
credentials_from_dict = Credentials.from_dict(credentials_dict)

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