Request object for an oAuth authorization code.
| Name | Type | Description | Notes |
|---|---|---|---|
| str | Email associated with a valid account. | [optional] | |
| password | str | Password associated with the email. | [optional] |
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)