Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 932 Bytes

File metadata and controls

30 lines (21 loc) · 932 Bytes

TokenObtainPair

Properties

Name Type Description Notes
username str
password str

Example

from workplace_client.models.token_obtain_pair import TokenObtainPair

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

# convert the object into a dict
token_obtain_pair_dict = token_obtain_pair_instance.to_dict()
# create an instance of TokenObtainPair from a dict
token_obtain_pair_from_dict = TokenObtainPair.from_dict(token_obtain_pair_dict)

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