Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.04 KB

File metadata and controls

29 lines (21 loc) · 1.04 KB

AccessTokenRequest

Request object for an oAuth accesstoken code.

Properties

Name Type Description Notes
authorization str Authorization code recieved from the oauth/authorize service. [optional]

Example

from sensorpush_api.models.access_token_request import AccessTokenRequest

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

# convert the object into a dict
access_token_request_dict = access_token_request_instance.to_dict()
# create an instance of AccessTokenRequest from a dict
access_token_request_from_dict = AccessTokenRequest.from_dict(access_token_request_dict)

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