1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 05:30:01 +00:00
Files
browser/libs/common/src/auth/models/request/auth-request-update.request.ts
2025-03-18 16:07:37 -04:00

13 lines
429 B
TypeScript

/**
* Represents a request to update an AuthRequest with either approval or denial of the request.
* If the request is approved, the update will contain the key and/or hash to be shared with the requesting device.
*/
export class AuthRequestUpdateRequest {
constructor(
readonly key: string,
readonly masterPasswordHash: string,
readonly deviceIdentifier: string,
readonly requestApproved: boolean,
) {}
}