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. Must be unique within the application.
expires_at
float
The epoch time in milliseconds when the secret will expire. If not provided, the secret will never expire.
[optional]
Example
frompy_logto.models.create_application_secret_requestimportCreateApplicationSecretRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateApplicationSecretRequest from a JSON stringcreate_application_secret_request_instance=CreateApplicationSecretRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateApplicationSecretRequest.to_json())
# convert the object into a dictcreate_application_secret_request_dict=create_application_secret_request_instance.to_dict()
# create an instance of CreateApplicationSecretRequest from a dictcreate_application_secret_request_from_dict=CreateApplicationSecretRequest.from_dict(create_application_secret_request_dict)