cecon-interfaces
Version:
Interfaces de Projetos Cecon
20 lines (19 loc) • 468 B
TypeScript
import { EDocType, EGender, IAddress } from '../../../general';
export interface IPayioConsumer {
active: boolean;
address: IAddress | null;
birthDate: Date | null;
createdAt: Date;
docNumber: string;
docType: EDocType;
email: string;
gender: EGender;
id: string;
internationalCode: string;
name: string;
phoneNumber: string;
imageUrl: string | null;
sandbox: boolean;
tags: string[];
updatedAt: Date;
}