mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
28 lines (27 loc) • 805 B
TypeScript
import { EIntDocType, IPaymentProvider } from '../../../general';
import { IPayioCompany } from '../interfaces/i-company';
import { PayioAddressEntity } from './address.entity';
export declare class PayioCompanyEntity implements IPayioCompany {
active: boolean;
address: PayioAddressEntity;
containerId: string;
createdAt: Date;
currency: string;
country: string;
doc: string;
docType: EIntDocType;
email: string;
id: string;
imageUrl: string | null;
internationalCode: string;
logoUrl: string | null;
name: string;
paymentProvider: IPaymentProvider | null;
phoneNumber: string;
sandbox: boolean;
shortName: string;
tags: string[];
updatedAt: Date;
version: string;
constructor(data?: Partial<PayioCompanyEntity>);
}