mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
24 lines (23 loc) • 738 B
TypeScript
import { EDocType, EFrom, IDesenfilaInfo, IInfo, IMobyoInfo } from '../../general';
import { ISponsor } from '../interfaces/i-sponsor';
import { ISponsorFee } from '../interfaces/i-sponsor-fee';
export declare class SponsorEntity implements ISponsor {
id: string;
name: string;
doc: string;
createdAt: Date;
fees: ISponsorFee[];
docType: EDocType;
desenfilaMerchantId: string | null;
desenfilaContainerId: string | null;
natiRefId: string | null;
mobyoRefId: string | null;
from: EFrom;
internationalCode: string;
phoneNumer: string;
email: string;
natiInfo: IInfo;
mobyoInfo: IMobyoInfo;
desenfilaInfo: IDesenfilaInfo;
constructor(data?: Partial<SponsorEntity>);
}