Sha256: 9bf593e4e154a7fcbe2ab38e88b0b874c52cf506f465b11eff0127a0cba3ef51

Contents?: true

Size: 1 KB

Versions: 4

Compression:

Stored size: 1 KB

Contents

# Conekta::CheckoutOrderTemplate

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **currency** | **String** | It is the currency in which the order will be created. It must be a valid ISO 4217 currency code. |  |
| **customer_info** | [**CheckoutOrderTemplateCustomerInfo**](CheckoutOrderTemplateCustomerInfo.md) |  | [optional] |
| **line_items** | [**Array<Product>**](Product.md) | They are the products to buy. Each contains the \"unit price\" and \"quantity\" parameters that are used to calculate the total amount of the order. |  |
| **metadata** | **Hash<String, Object>** | It is a set of key-value pairs that you can attach to the order. It can be used to store additional information about the order in a structured format. | [optional] |

## Example

```ruby
require 'conekta'

instance = Conekta::CheckoutOrderTemplate.new(
  currency: MXN,
  customer_info: null,
  line_items: null,
  metadata: {"key":"value"}
)
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
conekta-6.0.4 docs/CheckoutOrderTemplate.md
conekta-6.0.3 docs/CheckoutOrderTemplate.md
conekta-6.0.2 docs/CheckoutOrderTemplate.md
conekta-6.0.1 docs/CheckoutOrderTemplate.md