SyncteraRubySdk::Shipping

Properties

Name Type Description Notes
address ShippingAddress1 [optional]
care_of_line String The name of the person to send in care of [optional]
is_expedited_fulfillment Boolean Is the shipment expedited [optional][default to false]
method String The shipping method [optional][default to 'LOCAL_MAIL']
phone_number String The phone number of the recipient [optional]
recipient_name RecipientName [optional]

Example

require 'synctera_ruby_sdk'

instance = SyncteraRubySdk::Shipping.new(
  address: null,
  care_of_line: null,
  is_expedited_fulfillment: true,
  method: LOCAL_MAIL,
  phone_number: +14374570680,
  recipient_name: null
)