Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

TenantRecoveryKeyResponse

Tenant recovery key creation response serializer

Properties

Name Type Description Notes
expiry datetime
url str

Example

from authentik_client.models.tenant_recovery_key_response import TenantRecoveryKeyResponse

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

# convert the object into a dict
tenant_recovery_key_response_dict = tenant_recovery_key_response_instance.to_dict()
# create an instance of TenantRecoveryKeyResponse from a dict
tenant_recovery_key_response_from_dict = TenantRecoveryKeyResponse.from_dict(tenant_recovery_key_response_dict)

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