1
0
mirror of https://github.com/bitwarden/directory-connector synced 2026-02-26 01:13:14 +00:00
Files
directory-connector/jslib/common/src/models/response/apiKeyResponse.ts
2022-04-28 16:41:07 +02:00

11 lines
230 B
TypeScript

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