Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.03 KB

Shipping.md

File metadata and controls

28 lines (22 loc) · 1.03 KB

Synctera::Shipping

Properties

Name Type Description Notes
address Address1 The address to which the card will be shipped - Defaults to account shipping address if none supplied [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. * `INTERNATIONAL_GROUND` is only available for addresses in Canada and Mexico. [optional][default to 'LOCAL_MAIL']
phone_number String The phone number of the recipient [optional]
recipient_name RecipientName [optional]

Example

require 'synctera'

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