Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1015 Bytes

File metadata and controls

29 lines (22 loc) · 1015 Bytes

OpenapiClient::ShipToAddress

Properties

Name Type Description Notes
phone String Free-form phone number associated with the ship-to address. [optional]
address1 String First line of street address. [optional]
address2 String Second line of street address. [optional]
city String City. [optional]
state String State or province. [optional]
zip String Postal Code, free form. [optional]
country String Country. [optional]

Code Sample

require 'OpenapiClient'

instance = OpenapiClient::ShipToAddress.new(phone: 123-123-1234,
                                 address1: 123 Second Ave.,
                                 address2: Apt #42,
                                 city: Atlanta,
                                 state: GA,
                                 zip: 30024,
                                 country: US)