bitwarden-estensione-browser/bitwarden_license/bit-web/src/app/secrets-manager/secrets/responses/secret-list-item.response.ts

21 lines
680 B
TypeScript

import { BaseResponse } from "@bitwarden/common/models/response/base.response";
export class SecretListItemResponse extends BaseResponse {
id: string;
organizationId: string;
name: string;
creationDate: string;
revisionDate: string;
projects: string[];
constructor(response: any) {
super(response);
this.id = this.getResponseProperty("Id");
this.organizationId = this.getResponseProperty("OrganizationId");
this.name = this.getResponseProperty("Key");
this.creationDate = this.getResponseProperty("CreationDate");
this.revisionDate = this.getResponseProperty("RevisionDate");
this.projects = this.getResponseProperty("projects");
}
}