Module Values.ShipmentSource

The Status and TrackingNumber information for an inbound or outbound shipment.

Sourcetype nonrec t = {
  1. status : String_.t option;
    (*

    Status information for a shipment.

    *)
  2. trackingNumber : String_.t option;
    (*

    The tracking number for this job. Using this tracking number with your region's carrier's website, you can track a Snow device as the carrier transports it. For India, the carrier is Amazon Logistics. For all other regions, UPS is the carrier.

    *)
}
Sourceval make : ?status:??? -> ?trackingNumber:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t