@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
23 lines (22 loc) • 875 B
TypeScript
import Joi from 'joi';
import { DimensionUnit } from '../../models';
/** @description Dimensions specific to a package rate class */
export interface PackageRatingGroupDimensions {
/** @description Unit of the dimensions */
Unit: DimensionUnit;
/** @description Length of the package */
Length?: number;
/** @description Width of the package */
Width?: number;
/** @description Height of the package */
Height?: number;
/** @description Girth of the package as defined by the carrier */
Girth?: number;
/** @description No two sides exceed this amount */
NoTwoSides?: number;
/** @description Length plus girth should not exceed this amount */
LengthPlusGirth?: number;
/** @description Volume of the package */
Volume?: number;
}
export declare const PackageRatingGroupDimensionsSchema: Joi.ObjectSchema<any>;