Module Values.LineItemRequestSource

Information about a line item request.

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

    The ID of the catalog item.

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

    The quantity of a line item request.

    *)
}
Sourceval make : ?catalogItemId:??? -> ?quantity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of LineItemQuantity.t | `String of SkuCode.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