@sphereon/ssi-sdk.data-store
Version:
17 lines • 536 B
TypeScript
import { BaseEntity } from 'typeorm';
import { PartyEntity } from './PartyEntity';
import { ElectronicAddressType } from '../../types';
export declare class ElectronicAddressEntity extends BaseEntity {
id: string;
type: ElectronicAddressType;
electronicAddress: string;
party: PartyEntity;
partyId?: string;
ownerId?: string;
tenantId?: string;
createdAt: Date;
lastUpdatedAt: Date;
updateUpdatedDate(): void;
validate(): Promise<void>;
}
//# sourceMappingURL=ElectronicAddressEntity.d.ts.map