Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 837 Bytes

FiscalEntityAddress.md

File metadata and controls

30 lines (24 loc) · 837 Bytes

Conekta::FiscalEntityAddress

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

Example

require 'conekta'

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