@shipengine/connect-order-source-api
Version:
This is the typescript/javascript definitions for the order source api
11 lines (10 loc) • 406 B
TypeScript
import Joi from 'joi';
import { PackingSlip } from './packing-slip';
/** @description The brand requested for a fulfillment */
export declare class Branding {
/** @description Packing slip associated with the brand */
packing_slip?: PackingSlip;
/** @description Company name associated with the brand */
company_name?: string;
}
export declare const BrandingSchema: Joi.ObjectSchema<any>;