1
0
mirror of https://github.com/bitwarden/jslib synced 2026-01-03 17:13:14 +00:00
Files
jslib/src/models/response/twoFactorProviderResponse.ts
2019-03-01 00:13:37 -05:00

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');
}
}