You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The secret name to update. Must be unique within the application.
Example
frompy_logto.models.update_application_secret_requestimportUpdateApplicationSecretRequest# TODO update the JSON string belowjson="{}"# create an instance of UpdateApplicationSecretRequest from a JSON stringupdate_application_secret_request_instance=UpdateApplicationSecretRequest.from_json(json)
# print the JSON string representation of the objectprint(UpdateApplicationSecretRequest.to_json())
# convert the object into a dictupdate_application_secret_request_dict=update_application_secret_request_instance.to_dict()
# create an instance of UpdateApplicationSecretRequest from a dictupdate_application_secret_request_from_dict=UpdateApplicationSecretRequest.from_dict(update_application_secret_request_dict)