Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 940 Bytes

OrderFiscalEntityAddressResponse.md

File metadata and controls

32 lines (26 loc) · 940 Bytes

Conekta::OrderFiscalEntityAddressResponse

Properties

Name Type Description Notes
street1 String Street name and number
street2 String Street name and number [optional]
postal_code String Postal code
city String City
state String State [optional]
country String this field follows the ISO 3166-1 alpha-2 standard
external_number String External number
object String [optional]

Example

require 'conekta'

instance = Conekta::OrderFiscalEntityAddressResponse.new(
  street1: Nuevo Leon 254,
  street2: Departamento 404,
  postal_code: 06100,
  city: Ciudad de Mexico,
  state: Ciudad de Mexico,
  country: MX,
  external_number: 123,
  object: fiscal_entity_address
)