Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 506 Bytes

OrderTaxRequest.md

File metadata and controls

22 lines (16 loc) · 506 Bytes

Conekta::OrderTaxRequest

Properties

Name Type Description Notes
amount Integer The amount to be collected for tax in cents
description String description or tax's name
metadata Hash<String, Object> [optional]

Example

require 'conekta'

instance = Conekta::OrderTaxRequest.new(
  amount: 100,
  description: testing,
  metadata: {&quot;key&quot;:&quot;value&quot;}
)