@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
12 lines (11 loc) • 493 B
TypeScript
import Joi from 'joi';
/** @description Basic details about a carrier zone */
export interface Zone {
/** @description The name of this zone ex: '1' or 'EU-3' */
Name: string;
/** @description This is a human readable description about what the zone is */
Description?: string;
/** @description The identifier for this zone that could be used for rating keys. Must be snake cased and unique */
ApiCode: string;
}
export declare const ZoneSchema: Joi.ObjectSchema<any>;