Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.26 KB

File metadata and controls

32 lines (23 loc) · 1.26 KB

CreateOAuth2ApplicationOptions

CreateOAuth2ApplicationOptions holds options to create an oauth2 application

Properties

Name Type Description Notes
confidential_client bool [optional]
name str [optional]
redirect_uris List[str] [optional]

Example

from openapi_client.models.create_o_auth2_application_options import CreateOAuth2ApplicationOptions

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

# convert the object into a dict
create_o_auth2_application_options_dict = create_o_auth2_application_options_instance.to_dict()
# create an instance of CreateOAuth2ApplicationOptions from a dict
create_o_auth2_application_options_from_dict = CreateOAuth2ApplicationOptions.from_dict(create_o_auth2_application_options_dict)

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