Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.05 KB

File metadata and controls

30 lines (22 loc) · 1.05 KB

AuthorizeRequest

Request object for an oAuth authorization code.

Properties

Name Type Description Notes
email str Email associated with a valid account. [optional]
password str Password associated with the email. [optional]

Example

from sensorpush_api.models.authorize_request import AuthorizeRequest

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

# convert the object into a dict
authorize_request_dict = authorize_request_instance.to_dict()
# create an instance of AuthorizeRequest from a dict
authorize_request_from_dict = AuthorizeRequest.from_dict(authorize_request_dict)

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