mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
13 lines (12 loc) • 462 B
TypeScript
import { EDocType } from '../../../general';
import { IPayioDistributorResponsible } from '../interfaces/i-distributor-responsible';
export declare class PayioDistributorResponsibleEntity implements IPayioDistributorResponsible {
doc: string;
docType: EDocType;
documentFileUrl: string;
email: string;
internationalCode: string;
name: string;
phoneNumber: string;
constructor(data?: Partial<PayioDistributorResponsibleEntity>);
}