UNPKG

@shipengine/connect-order-source-api

Version:

This is the typescript/javascript definitions for the order source api

9 lines (8 loc) 306 B
import Joi from 'joi'; import { Product } from '../models'; /** @description The response for the GetProducts method */ export declare class GetProductsResponse { /** @description The list of Products */ products: Product[]; } export declare const GetProductsResponseSchema: Joi.ObjectSchema<any>;