import { ProductSystemCountryModel } from "./ProductSystemCountryModel"; /** * Represents a product classification system. * @export * @class ProductClassificationSystemModel */ export declare class ProductClassificationSystemModel { /** * @type {number} * @memberof ProductClassificationSystemModel */ systemId?: number | undefined; /** * @type {string} * @memberof ProductClassificationSystemModel */ systemCode?: string | undefined; /** * @type {string} * @memberof ProductClassificationSystemModel */ description?: string | undefined; /** * @type {string} * @memberof ProductClassificationSystemModel */ customsValue?: string | undefined; /** * @type {ProductSystemCountryModel[]} * @memberof ProductClassificationSystemModel */ countries?: ProductSystemCountryModel[] | undefined; }