Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.26 KB

File metadata and controls

30 lines (21 loc) · 1.26 KB

AuthserverListOauthClientResponse

Response parameters for list oauth client.

Properties

Name Type Description Notes
oauth_clients List[AuthserverOauthClient] List of base oauth client object. [optional]

Example

from ibm_gdsc_sdk_saas.models.authserver_list_oauth_client_response import AuthserverListOauthClientResponse

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

# convert the object into a dict
authserver_list_oauth_client_response_dict = authserver_list_oauth_client_response_instance.to_dict()
# create an instance of AuthserverListOauthClientResponse from a dict
authserver_list_oauth_client_response_from_dict = AuthserverListOauthClientResponse.from_dict(authserver_list_oauth_client_response_dict)

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