bling-erp-api-with-rate-limit
Version:
Pacote de integração com a API do Bling ERP
23 lines (22 loc) • 439 B
TypeScript
export interface ICreateBody {
logistica: {
id: number;
};
servicos: {
descricao: string;
codigo: string;
aliases: string[];
ativo?: boolean;
freteItem: number;
estimativaEntrega: number;
idCodigoServico?: string;
transportador: {
id: number;
};
}[];
}
export interface ICreateResponse {
data: {
id: number;
}[];
}