mirror of
https://github.com/bitwarden/jslib
synced 2026-01-03 17:13:14 +00:00
15 lines
422 B
TypeScript
15 lines
422 B
TypeScript
import { BaseResponse } from './baseResponse';
|
|
|
|
import { TwoFactorProviderType } from '../../enums/twoFactorProviderType';
|
|
|
|
export class TwoFactorProviderResponse extends BaseResponse {
|
|
enabled: boolean;
|
|
type: TwoFactorProviderType;
|
|
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.enabled = this.getResponseProperty('Enabled');
|
|
this.type = this.getResponseProperty('Type');
|
|
}
|
|
}
|