Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.05 KB

File metadata and controls

29 lines (21 loc) · 1.05 KB

ClientSecretResponse

The response containing the regenerated client secret.

Properties

Name Type Description Notes
client_secret str The newly generated client secret. [optional]

Example

from docspace_api_sdk.models.client_secret_response import ClientSecretResponse

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

# convert the object into a dict
client_secret_response_dict = client_secret_response_instance.to_dict()
# create an instance of ClientSecretResponse from a dict
client_secret_response_from_dict = ClientSecretResponse.from_dict(client_secret_response_dict)

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