bling-erp-api-with-rate-limit
Version:
Pacote de integração com a API do Bling ERP
24 lines (23 loc) • 397 B
TypeScript
export interface IUpdateParams {
idTransicao: number;
}
export interface IUpdateBody {
ativo?: boolean;
acoes?: number[];
modulo?: {
id: number;
};
situacaoOrigem: {
id: number;
nome: string;
};
situacaoDestino: {
id: number;
nome: string;
};
}
export interface IUpdateResponse {
data: {
id: number;
};
}