Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 826 Bytes

CustomerShippingContactsAddress.md

File metadata and controls

30 lines (24 loc) · 826 Bytes

Conekta::CustomerShippingContactsAddress

Properties

Name Type Description Notes
street1 String [optional]
street2 String [optional]
postal_code String [optional]
city String [optional]
state String [optional]
country String this field follows the ISO 3166-1 alpha-2 standard [optional]
residential Boolean [optional]

Example

require 'conekta'

instance = Conekta::CustomerShippingContactsAddress.new(
  street1: Nuevo Leon 254,
  street2: Departamento 404,
  postal_code: 06100,
  city: Ciudad de Mexico,
  state: Ciudad de Mexico,
  country: MX,
  residential: true
)