@sphereon/ssi-sdk.data-store
Version:
16 lines • 462 B
TypeScript
import { PartyEntity } from './PartyEntity';
import { PartyOrigin, PartyTypeType } from '../../types';
export declare class PartyTypeEntity {
id: string;
type: PartyTypeType;
origin: PartyOrigin;
name: string;
description?: string;
tenantId: string;
parties: Array<PartyEntity>;
createdAt: Date;
lastUpdatedAt: Date;
updateUpdatedDate(): void;
validate(): Promise<void>;
}
//# sourceMappingURL=PartyTypeEntity.d.ts.map