mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-05 23:53:21 +00:00
46 lines
934 B
TypeScript
46 lines
934 B
TypeScript
import { CollectionData } from "../data/collectionData";
|
|
import { CollectionView } from "../view/collectionView";
|
|
|
|
import Domain from "./domainBase";
|
|
import { EncString } from "./encString";
|
|
|
|
export class Collection extends Domain {
|
|
id: string;
|
|
organizationId: string;
|
|
name: EncString;
|
|
externalId: string;
|
|
readOnly: boolean;
|
|
hidePasswords: boolean;
|
|
|
|
constructor(obj?: CollectionData) {
|
|
super();
|
|
if (obj == null) {
|
|
return;
|
|
}
|
|
|
|
this.buildDomainModel(
|
|
this,
|
|
obj,
|
|
{
|
|
id: null,
|
|
organizationId: null,
|
|
name: null,
|
|
externalId: null,
|
|
readOnly: null,
|
|
hidePasswords: null,
|
|
},
|
|
["id", "organizationId", "externalId", "readOnly", "hidePasswords"],
|
|
);
|
|
}
|
|
|
|
decrypt(): Promise<CollectionView> {
|
|
return this.decryptObj(
|
|
new CollectionView(this),
|
|
{
|
|
name: null,
|
|
},
|
|
this.organizationId,
|
|
);
|
|
}
|
|
}
|