@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
8 lines (7 loc) • 312 B
TypeScript
/** @description Basic structure for defining an amount of money and its currency */
export declare class Currency {
/** @description The ISO 4217 Currency Code (USD, EUR, etc) https://www.iso.org/iso-4217-currency-codes.html */
currency: string;
/** @description The amount */
amount: string;
}