cecon-interfaces
Version:
Interfaces de Projetos Cecon
22 lines (21 loc) • 616 B
TypeScript
import { EDocType, EGender, IAddress } from '../../../general';
import { IPayioConsumer } from '../interfaces/i-consumer';
export declare class PayioConsumerEntity implements IPayioConsumer {
active: boolean;
address: IAddress | null;
birthDate: Date | null;
createdAt: Date;
docNumber: string;
docType: EDocType;
email: string;
gender: EGender;
id: string;
imageUrl: string | null;
internationalCode: string;
name: string;
phoneNumber: string;
sandbox: boolean;
tags: string[];
updatedAt: Date;
constructor(data?: Partial<PayioConsumerEntity>);
}