UNPKG

bling-erp-api-with-rate-limit

Version:
16 lines (15 loc) 300 B
import { ISituacao } from '../types/situacao.type'; export interface ICreateBody { numeroPlp: string; situacao: ISituacao; descricao: string; logistica?: { id: number; }; objetos: string[]; } export interface ICreateResponse { data: { id: number; }; }