UNPKG

@shipengine/connect-fulfillment-provider-api

Version:

OpenAPI specification and TypeScript definitions for the Connect Fulfillment Provider API

9 lines (8 loc) 254 B
import { DocumentType } from './document-type'; import { DocumentFormat } from './document-formats'; /** @description Basic structure for a document */ export interface Document { type: DocumentType[]; data: string; format: DocumentFormat; }