/** * Represents a classification for a given item. * @export * @class ClassificationModel */ export declare class ClassificationModel { /** * @type {number} * @memberof ClassificationModel */ id?: number | undefined; /** * @type {string} * @memberof ClassificationModel */ productCode: string; /** * @type {string} * @memberof ClassificationModel */ systemCode?: string | undefined; /** * @type {string} * @memberof ClassificationModel */ country?: string | undefined; /** * @type {boolean} * @memberof ClassificationModel */ isPremium?: boolean | undefined; }