Sha256: 57d5d36e925c6cb721b3edbba5491500fb82b299ef7091b4fb9b2fd36c30df94

Contents?: true

Size: 951 Bytes

Versions: 6

Compression:

Stored size: 951 Bytes

Contents

# Conekta::ShippingOrderResponse

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **amount** | **Integer** | Shipping amount in cents |  |
| **carrier** | **String** | Carrier name for the shipment | [optional] |
| **tracking_number** | **String** | Tracking number can be used to track the shipment | [optional] |
| **method** | **String** | Method of shipment | [optional] |
| **metadata** | **Hash<String, Object>** | Hash where the user can send additional information for each 'shipping'. | [optional] |
| **id** | **String** |  | [optional] |
| **object** | **String** |  | [optional] |
| **parent_id** | **String** |  | [optional] |

## Example

```ruby
require 'conekta'

instance = Conekta::ShippingOrderResponse.new(
  amount: 100,
  carrier: FEDEX,
  tracking_number: TRACK123,
  method: Same day,
  metadata: {key=value},
  id: null,
  object: null,
  parent_id: null
)
```

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
conekta-6.0.5 docs/ShippingOrderResponse.md
conekta-6.0.4 docs/ShippingOrderResponse.md
conekta-6.0.3 docs/ShippingOrderResponse.md
conekta-6.0.2 docs/ShippingOrderResponse.md
conekta-6.0.1 docs/ShippingOrderResponse.md
conekta-6.0.0 docs/ShippingOrderResponse.md