@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
10 lines (9 loc) • 330 B
TypeScript
import Joi from 'joi';
/** Configuration for a given rate card */
export interface RateCard {
/** Externally facing id of the rate card. */
Id: string;
/** Currency of the rate card. This uses the three-digit currency code format. */
Currency: string;
}
export declare const RateCardSchema: Joi.ObjectSchema<any>;