@shipengine/connect-fulfillment-provider-api
Version:
OpenAPI specification and TypeScript definitions for the Connect Fulfillment Provider API
9 lines (8 loc) • 319 B
TypeScript
import { PackingSlip } from './packing-slip';
/** @description The brand requested for a fulfillment */
export interface Branding {
/** @description Packing slip associated with the brand */
packing_slip?: PackingSlip;
/** @description Company name associated with the brand */
company_name?: string;
}