@shipengine/connect-order-source-api
Version:
This is the typescript/javascript definitions for the order source api
10 lines (9 loc) • 423 B
TypeScript
import Joi from 'joi';
/** @description Represents information needed to leverage a third party Carrier API implementation */
export declare class LabelVoucher {
/** @description Base URL for the Carrier API implementation */
url?: string;
/** @description Token needed to authenticate with the Carrier API implementation */
token?: string;
}
export declare const LabelVoucherSchema: Joi.ObjectSchema<any>;