/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Signed token containing the the information necessary to reset the password for a user. * @export * @interface PasswordResetSignedToken */ export interface PasswordResetSignedToken { /** * * @type {string} * @memberof PasswordResetSignedToken */ concreteType: PasswordResetSignedTokenConcreteTypeEnum; /** * The hash message authentication code for the message. * @type {string} * @memberof PasswordResetSignedToken */ hmac?: string; /** * The version of the key used to generate the HMAC. * @type {number} * @memberof PasswordResetSignedToken */ version?: number; /** * The date-time when this token expires. * @type {string} * @memberof PasswordResetSignedToken */ expiresOn?: string; /** * The date-time the token was generated. * @type {string} * @memberof PasswordResetSignedToken */ createdOn?: string; /** * The ID of the user account. * @type {string} * @memberof PasswordResetSignedToken */ userId?: string; /** * Used to check if this token is valid * @type {string} * @memberof PasswordResetSignedToken */ validity?: string; } /** * @export */ export declare const PasswordResetSignedTokenConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_auth_PasswordResetSignedToken: "org.sagebionetworks.repo.model.auth.PasswordResetSignedToken"; }; export type PasswordResetSignedTokenConcreteTypeEnum = typeof PasswordResetSignedTokenConcreteTypeEnum[keyof typeof PasswordResetSignedTokenConcreteTypeEnum]; /** * Check if a given object implements the PasswordResetSignedToken interface. */ export declare function instanceOfPasswordResetSignedToken(value: object): value is PasswordResetSignedToken; export declare function PasswordResetSignedTokenFromJSON(json: any): PasswordResetSignedToken; export declare function PasswordResetSignedTokenFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasswordResetSignedToken; export declare function PasswordResetSignedTokenToJSON(json: any): PasswordResetSignedToken; export declare function PasswordResetSignedTokenToJSONTyped(value?: PasswordResetSignedToken | null, ignoreDiscriminator?: boolean): any;