UNPKG

bling-erp-api-with-rate-limit

Version:
24 lines (23 loc) 397 B
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; }; }