bitwarden-estensione-browser/common/src/models/response/ssoPreValidateResponse.ts

11 lines
235 B
TypeScript

import { BaseResponse } from "./baseResponse";
export class SsoPreValidateResponse extends BaseResponse {
token: string;
constructor(response: any) {
super(response);
this.token = this.getResponseProperty("Token");
}
}