Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 811 Bytes

OrderFiscalEntityRequest.md

File metadata and controls

28 lines (22 loc) · 811 Bytes

Conekta::OrderFiscalEntityRequest

Properties

Name Type Description Notes
address FiscalEntityAddress
email String Email of the fiscal entity [optional]
metadata Hash<String, Object> Metadata associated with the fiscal entity [optional]
name String Name of the fiscal entity [optional]
phone String Phone of the fiscal entity [optional]
tax_id String Tax ID of the fiscal entity [optional]

Example

require 'conekta'

instance = Conekta::OrderFiscalEntityRequest.new(
  address: null,
  email: test@gmail.com,
  metadata: null,
  name: Conekta Inc,
  phone: +525511223344,
  tax_id: AAA010101AAA
)