@shipengine/connect-order-source-api
Version:
This is the typescript/javascript definitions for the order source api
11 lines (10 loc) • 337 B
TypeScript
import Joi from 'joi';
import { Address } from './address';
/**
* @description This model represents information for who is being billed
*/
export declare class BillTo extends Address {
/** @description The email address of the person being billed */
email?: string;
}
export declare const BillToSchema: Joi.ObjectSchema<any>;