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"); } }