UNPKG

@ory/kratos-client

Version:

OpenAPI client for @ory/kratos-client

26 lines (18 loc) 1.01 kB
# RecoveryCodeForIdentity Used when an administrator creates a recovery code for an identity. ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **expires_at** | **string** | Expires At is the timestamp of when the recovery flow expires The timestamp when the recovery code expires. | [optional] [default to undefined] **recovery_code** | **string** | RecoveryCode is the code that can be used to recover the account | [default to undefined] **recovery_link** | **string** | RecoveryLink with flow This link opens the recovery UI with an empty `code` field. | [default to undefined] ## Example ```typescript import { RecoveryCodeForIdentity } from '@ory/kratos-client'; const instance: RecoveryCodeForIdentity = { expires_at, recovery_code, recovery_link, }; ``` [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)