mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
33 lines (32 loc) • 1.02 kB
TypeScript
import { EDocType, IPaymentProvider } from '../../../general';
import { IPixKey } from '../../../general/interfaces/i-pix-key';
import { IDesenfila } from '../../desenfila/interfaces';
import { INatipayCompany } from '../interfaces/i-company';
import { NatiapyAddressEntity } from './address.entity';
export declare class NatipayCompanyEntity implements INatipayCompany {
active: boolean;
address: NatiapyAddressEntity;
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;
constructor(data?: Partial<NatipayCompanyEntity>);
}