import { DomainObject } from "./domain-object"; import { ShipmentVendor } from "./shipment-vendor"; export declare class ShipmentSetting extends DomainObject { SettingId?: string | undefined; CarrierCode?: string | undefined; ProductCode?: string | undefined; SenderCountry?: string | undefined; ReceiverCountry?: string | undefined; IncoTerm?: string | undefined; Paperless?: boolean | undefined; ExportReason?: string | undefined; OwnAgreementAccountNo?: string | undefined; ServiceCode?: string | undefined; ServiceValue?: string | undefined; AddonCode?: string | undefined; AddonValue?: string | undefined; ShipmentVendorId?: string | undefined; ShipmentVendor?: ShipmentVendor | undefined; } //# sourceMappingURL=shipment-setting.d.ts.map