/** * Represents a parameter associated with an item. * @export * @class ItemRestrictionInputModel */ export declare class ItemRestrictionInputModel { /** * @type {string} * @memberof ItemRestrictionInputModel */ itemCode: string; /** * @type {number} * @memberof ItemRestrictionInputModel */ companyId: number; /** * @type {string} * @memberof ItemRestrictionInputModel */ hsCode: string; /** * @type {string} * @memberof ItemRestrictionInputModel */ countryOfImport: string; /** * @type {string} * @memberof ItemRestrictionInputModel */ countryOfExport: string; /** * @type {string} * @memberof ItemRestrictionInputModel */ countryOfManufacture: string; /** * @type {string} * @memberof ItemRestrictionInputModel */ restrictionType: string; /** * @type {string} * @memberof ItemRestrictionInputModel */ regulation: string; /** * @type {string} * @memberof ItemRestrictionInputModel */ governmentAgency?: string | undefined; /** * @type {string} * @memberof ItemRestrictionInputModel */ complianceMessage?: string | undefined; }