mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
27 lines (26 loc) • 711 B
TypeScript
import { EIntDocType } from '../../../general';
import { IPaymentProvider } from '../../../general/interfaces/i-payment-provider';
import { IPayioAddress } from './i-address';
export interface IPayioCompany {
active: boolean;
address: IPayioAddress;
containerId: string;
createdAt: Date;
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[];
currency: string;
country: string;
updatedAt: Date;
version: string;
}