# UltracartClient::OrderEdi ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **bill_to_edi_code** | **String** | Billing address identification code from the EDI order. Typically DUNS or DUNS+4 | [optional] | | **edi_department** | **String** | Department number associated with this EDI order | [optional] | | **edi_internal_vendor_number** | **String** | Internal vendor number associated with this EDI order | [optional] | | **ship_to_edi_code** | **String** | Shipping address identification code from the EDI order. Typically DUNS or DUNS+4 | [optional] | ## Example ```ruby require 'ultracart_api' instance = UltracartClient::OrderEdi.new( bill_to_edi_code: null, edi_department: null, edi_internal_vendor_number: null, ship_to_edi_code: null ) ```