scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
21 lines (20 loc) • 638 B
TypeScript
import { EDesenfilaFrom, EDocType } 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: EDesenfilaFrom;
internationalCode: string;
phoneNumer: string;
email: string;
constructor(data?: Partial<SponsorEntity>);
}