1
0
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:
Kyle Spearrin
2019-03-07 10:58:27 -05:00
parent 0fa88b44b8
commit 3b3b71d841
3 changed files with 24 additions and 0 deletions

View 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');
}
}