mirror of
https://github.com/bitwarden/directory-connector
synced 2026-02-26 09:23:12 +00:00
11 lines
230 B
TypeScript
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");
|
|
}
|
|
}
|