Module Values.LineItemSource

Information about a line item.

Sourcetype nonrec t = {
  1. catalogItemId : SkuCode.t option;
    (*

    The ID of the catalog item.

    *)
  2. lineItemId : LineItemId.t option;
    (*

    The ID of the line item.

    *)
  3. quantity : LineItemQuantity.t option;
    (*

    The quantity of the line item.

    *)
  4. status : LineItemStatus.t option;
    (*

    The status of the line item.

    *)
  5. shipmentInformation : ShipmentInformation.t option;
    (*

    Information about a line item shipment.

    *)
  6. assetInformationList : LineItemAssetInformationList.t option;
    (*

    Information about assets.

    *)
  7. previousLineItemId : LineItemId.t option;
    (*

    The ID of the previous line item.

    *)
  8. previousOrderId : OrderId.t option;
    (*

    The ID of the previous order.

    *)
}
Sourceval make : ?catalogItemId:??? -> ?lineItemId:??? -> ?quantity:??? -> ?status:??? -> ?shipmentInformation:??? -> ?assetInformationList:??? -> ?previousLineItemId:??? -> ?previousOrderId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of LineItemQuantity.t | `List of [> `Structure of (string * [> `List of [> `String of MacAddress.t ] list | `String of AssetId.t ]) list ] list | `String of SkuCode.t | `Structure of (string * [> `Enum of string | `String of TrackingId.t ]) list ]) 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