Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 963 Bytes

File metadata and controls

31 lines (22 loc) · 963 Bytes

SignInRequest

Properties

Name Type Description Notes
email str
password str
tenant_id UUID Target tenant ID to sign into [optional]

Example

from ksapi.models.sign_in_request import SignInRequest

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

# convert the object into a dict
sign_in_request_dict = sign_in_request_instance.to_dict()
# create an instance of SignInRequest from a dict
sign_in_request_from_dict = SignInRequest.from_dict(sign_in_request_dict)

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