Files
aliasvault/core/models/src/webapi/RefreshToken.ts
2025-12-11 09:19:03 +01:00

22 lines
455 B
TypeScript

export type RefreshToken = {
/**
* Gets or sets the unique identifier for the refresh token.
*/
id: string;
/**
* Gets or sets the device identifier associated with the refresh token.
*/
deviceIdentifier: string;
/**
* Gets or sets the expiration date of the refresh token.
*/
expireDate: string;
/**
* Gets or sets the creation date of the refresh token.
*/
createdAt: string;
}