Increase.PhysicalCards.PhysicalCard.Shipment.Tracking (Increase v1.0.0)

Copy Markdown View Source

Tracking details for the shipment.

Fields

  • number - The tracking number. Not available for USPS shipments.
  • return_number - For returned shipments, the tracking number of the return shipment.
  • return_reason - For returned shipments, this describes why the package was returned.
  • shipped_at - The ISO 8601 date and time at which the fulfillment provider marked the card as ready for pick-up by the shipment carrier.
  • updates - Tracking updates relating to the physical card's delivery.

Summary

Types

t()

@type t() :: %Increase.PhysicalCards.PhysicalCard.Shipment.Tracking{
  number: String.t() | nil,
  return_number: String.t() | nil,
  return_reason: String.t() | nil,
  shipped_at: DateTime.t(),
  updates: [Increase.PhysicalCards.PhysicalCard.Shipment.Tracking.Update.t()]
}