cecon-interfaces
Version:
Interfaces de Projetos Cecon
23 lines (22 loc) • 546 B
TypeScript
import { IAddress, IPaymentProvider } from '../../general';
import { EDocType } from '../../general/enums';
export interface IPartner {
active: boolean;
address: IAddress;
doc: string;
docType: EDocType;
email: string;
fullName: string;
id: string;
imageUrl: string | null;
internationalCode: string;
level: number;
logoUrl?: string;
name: string;
paymentProvider: IPaymentProvider;
phoneNumber: string;
sandbox: boolean;
tags: string[];
updatedAt: Date;
version: string;
}