bling-erp-api-with-rate-limit
Version:
Pacote de integração com a API do Bling ERP
21 lines (20 loc) • 396 B
TypeScript
export interface IUpdateParams {
idLogisticaServico: number;
}
export interface IUpdateBody {
descricao: string;
codigo: string;
aliases: string[];
ativo?: boolean;
freteItem: number;
estimativaEntrega: number;
idCodigoServico?: string;
transportador?: {
id: number;
};
}
export interface IUpdateResponse {
data: {
id: number;
};
}