Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

AuthserverCreateOauthClientRequest

Request parameters for create oauth client.

Properties

Name Type Description Notes
description str Description of oauth client. [optional]
name str Name of oauth client. [optional]

Example

from ibm_gdsc_sdk_saas.models.authserver_create_oauth_client_request import AuthserverCreateOauthClientRequest

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

# convert the object into a dict
authserver_create_oauth_client_request_dict = authserver_create_oauth_client_request_instance.to_dict()
# create an instance of AuthserverCreateOauthClientRequest from a dict
authserver_create_oauth_client_request_from_dict = AuthserverCreateOauthClientRequest.from_dict(authserver_create_oauth_client_request_dict)

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