/** * Represents a premium classification associated with an item's HS code for a system code. * @export * @class ItemPremiumClassificationInputModel */ export declare class ItemPremiumClassificationInputModel { /** * @type {string} * @memberof ItemPremiumClassificationInputModel */ hsCode: string; /** * @type {string} * @memberof ItemPremiumClassificationInputModel */ justification: string; /** * @type {string} * @memberof ItemPremiumClassificationInputModel */ country?: string | undefined; }