mirror of
https://github.com/bitwarden/browser
synced 2026-02-10 05:30:01 +00:00
13 lines
429 B
TypeScript
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,
|
|
) {}
|
|
}
|