mirror of
https://github.com/bitwarden/browser
synced 2026-01-06 10:33:57 +00:00
19 lines
648 B
TypeScript
19 lines
648 B
TypeScript
import { BaseResponse } from "../../../models/response/base.response";
|
|
|
|
export class OrganizationDomainSsoDetailsResponse extends BaseResponse {
|
|
id: string;
|
|
organizationIdentifier: string;
|
|
ssoAvailable: boolean;
|
|
domainName: string;
|
|
verifiedDate?: Date;
|
|
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.id = this.getResponseProperty("id");
|
|
this.organizationIdentifier = this.getResponseProperty("organizationIdentifier");
|
|
this.ssoAvailable = this.getResponseProperty("ssoAvailable");
|
|
this.domainName = this.getResponseProperty("domainName");
|
|
this.verifiedDate = this.getResponseProperty("verifiedDate");
|
|
}
|
|
}
|