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