mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 09:13:33 +00:00
apis for org api keys
This commit is contained in:
10
src/models/response/apiKeyResponse.ts
Normal file
10
src/models/response/apiKeyResponse.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { BaseResponse } from './baseResponse';
|
||||
|
||||
export class ApiKeyResponse extends BaseResponse {
|
||||
apiKey: string;
|
||||
|
||||
constructor(response: any) {
|
||||
super(response);
|
||||
this.apiKey = this.getResponseProperty('ApiKey');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user