UNPKG

bling-erp-api-with-rate-limit

Version:
23 lines (22 loc) 482 B
import { ISituacao } from '../types/situacao.type'; export interface IFindParams { idVendedor: number; } export interface IFindResponse { data: { id?: number; descontoLimite?: number; loja?: { id: number; }; contato: { id: number; nome: string; situacao: ISituacao; }; comissoes: { descontoMaximo: number; aliquota: number; }[]; }; }