cecon-interfaces
Version:
Interfaces de Projetos Cecon
13 lines (12 loc) • 352 B
TypeScript
import { EDocType, EPixKeyType } from '../enums';
import { IPixKey } from '../interfaces/i-pix-key';
export declare class PixKeyEntity implements IPixKey {
description: string;
doc: string;
docType: EDocType;
isDefault: boolean;
key: string;
name: string;
type: EPixKeyType;
constructor(data?: Partial<PixKeyEntity>);
}