Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.22 KB

File metadata and controls

30 lines (21 loc) · 1.22 KB

AuthserverGetOauthClientResponse

Response parameters for get oauth client by clientId.

Properties

Name Type Description Notes
oauth_client AuthserverOauthClient [optional]

Example

from ibm_gdsc_sdk_saas.models.authserver_get_oauth_client_response import AuthserverGetOauthClientResponse

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

# convert the object into a dict
authserver_get_oauth_client_response_dict = authserver_get_oauth_client_response_instance.to_dict()
# create an instance of AuthserverGetOauthClientResponse from a dict
authserver_get_oauth_client_response_from_dict = AuthserverGetOauthClientResponse.from_dict(authserver_get_oauth_client_response_dict)

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