Conekta::ShippingLinesDataResponse
July 21, 2026 ยท View on GitHub
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
require 'conekta'
instance = Conekta::ShippingLinesDataResponse.new(
amount: 100,
carrier: FEDEX,
tracking_number: TRACK123,
method: Same day,
metadata: {key=value},
id: null,
object: null,
parent_id: null
)