Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.37 KB

File metadata and controls

31 lines (22 loc) · 1.37 KB

RegenerateClientCredentialsPost200Response

Properties

Name Type Description Notes
message str Success message [optional]
client_id str New client ID [optional]
client_secret str New client secret [optional]

Example

from authservice.models.regenerate_client_credentials_post200_response import RegenerateClientCredentialsPost200Response

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

# convert the object into a dict
regenerate_client_credentials_post200_response_dict = regenerate_client_credentials_post200_response_instance.to_dict()
# create an instance of RegenerateClientCredentialsPost200Response from a dict
regenerate_client_credentials_post200_response_form_dict = regenerate_client_credentials_post200_response.from_dict(regenerate_client_credentials_post200_response_dict)

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