@shipengine/connect-order-source-api
Version:
This is the typescript/javascript definitions for the order source api
12 lines (11 loc) • 591 B
TypeScript
import Joi from 'joi';
import { PackingSlipTemplate } from '../models/packing-slip-template';
/**
* @description This response contains the template for a packing slip used by the platform.
* More information can be found here https://help.shipstation.com/hc/en-us/articles/360057378051-Create-Custom-Packing-Slips
*/
export declare class GetPackingSlipTemplateResponse {
/** @description The packing slips that should be used for this order source */
packing_slip_template: PackingSlipTemplate;
}
export declare const GetPackingSlipTemplateResponseSchema: Joi.ObjectSchema<any>;