scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
11 lines (10 loc) • 360 B
TypeScript
import { EDocType } from '../../general';
import { IOrderMerchant } from '../interfaces/i-merchant';
export declare class OrderMerchantEntity implements IOrderMerchant {
description: string | null;
doc: string | null;
docType: EDocType | null;
id: string | null;
name: string | null;
constructor(data?: Partial<OrderMerchantEntity>);
}