export interface IOrderMerchant {
    description: string | null;
    doc: string | null;
    docType: string | null;
    id: string | null;
    name: string | null;
}
