mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
32 lines (31 loc) • 916 B
TypeScript
import { EDocType } from '../../../general';
import { IPaymentProvider } from '../../../general/interfaces/i-payment-provider';
import { IPixKey } from '../../../general/interfaces/i-pix-key';
import { IDesenfila } from '../../desenfila/interfaces';
import { INatipayAddress } from './i-address';
export interface INatipayCompany {
active: boolean;
address: INatipayAddress;
containerId: string;
containerName: string;
country: string;
createdAt: Date;
currency: string;
doc: string;
docType: EDocType;
email: string;
id: string;
imageUrl: string | null;
internationalCode: string;
logoUrl: string | null;
name: string;
natipay: IDesenfila | null;
paymentProvider: IPaymentProvider | null;
phoneNumber: string;
pixKeys: IPixKey[];
sandbox: boolean;
shortName: string;
tags: string[];
updatedAt: Date;
version: string;
}