Module Values.CreateOrderInputSource

Creates an order for an Outpost.

Sourcetype nonrec t = {
  1. outpostIdentifier : OutpostIdentifier.t;
    (*

    The ID or the Amazon Resource Name (ARN) of the Outpost.

    *)
  2. lineItems : LineItemRequestListDefinition.t option;
    (*

    The line items that make up the order.

    *)
  3. paymentOption : PaymentOption.t;
    (*

    The payment option.

    *)
  4. paymentTerm : PaymentTerm.t option;
    (*

    The payment terms.

    *)
}
Sourceval context_ : string
Sourceval make : ?lineItems:??? -> ?paymentTerm:??? -> outpostIdentifier:OutpostIdentifier.t -> paymentOption:PaymentOption.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Integer of LineItemQuantity.t | `String of SkuCode.t ]) list ] list | `String of OutpostIdentifier.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