/** * Product classification output model. * @export * @class ItemClassificationOutputModel */ export declare class ItemClassificationOutputModel { /** * @type {number} * @memberof ItemClassificationOutputModel */ id?: number | undefined; /** * @type {number} * @memberof ItemClassificationOutputModel */ itemId?: number | undefined; /** * @type {number} * @memberof ItemClassificationOutputModel */ systemId?: number | undefined; /** * @type {string} * @memberof ItemClassificationOutputModel */ productCode?: string | undefined; /** * @type {string} * @memberof ItemClassificationOutputModel */ systemCode?: string | undefined; /** * @type {string} * @memberof ItemClassificationOutputModel */ country?: string | undefined; /** * @type {boolean} * @memberof ItemClassificationOutputModel */ isPremium?: boolean | undefined; /** * @type {string} * @memberof ItemClassificationOutputModel */ classificationEvent?: string | undefined; }