Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

BuildAuthorizeUriResponse

The response of the buildAuthorizeUri endpoint.

Properties

Name Type Description Notes
authorize_uri str The Authorization URI. The Client should be redirected to this URI.

Example

from wordlift_client.models.build_authorize_uri_response import BuildAuthorizeUriResponse

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

# convert the object into a dict
build_authorize_uri_response_dict = build_authorize_uri_response_instance.to_dict()
# create an instance of BuildAuthorizeUriResponse from a dict
build_authorize_uri_response_from_dict = BuildAuthorizeUriResponse.from_dict(build_authorize_uri_response_dict)

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