/** * Represents a Premium Classification output model associated with an item's SystemCode.. * @export * @class ItemPremiumClassificationOutputModel */ export declare class ItemPremiumClassificationOutputModel { /** * @type {string} * @memberof ItemPremiumClassificationOutputModel */ id?: string | undefined; /** * @type {string} * @memberof ItemPremiumClassificationOutputModel */ itemCode?: string | undefined; /** * @type {number} * @memberof ItemPremiumClassificationOutputModel */ companyId?: number | undefined; /** * @type {string} * @memberof ItemPremiumClassificationOutputModel */ hsCode?: string | undefined; /** * @type {string} * @memberof ItemPremiumClassificationOutputModel */ systemCode?: string | undefined; /** * @type {string} * @memberof ItemPremiumClassificationOutputModel */ justification?: string | undefined; /** * @type {Date} * @memberof ItemPremiumClassificationOutputModel */ createdDate?: Date | undefined; /** * @type {number} * @memberof ItemPremiumClassificationOutputModel */ createdUserId?: number | undefined; /** * @type {string} * @memberof ItemPremiumClassificationOutputModel */ country?: string | undefined; }