Module Values.OfferingStatusSource

The status of the offering.

Sourcetype nonrec t = {
  1. type_ : OfferingTransactionType.t option;
    (*

    The type specified for the offering status.

    *)
  2. offering : Offering.t option;
    (*

    Represents the metadata of an offering status.

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

    The number of available devices in the offering.

    *)
  4. effectiveOn : DateTime.t option;
    (*

    The date on which the offering is effective.

    *)
}
Sourceval make : ?type_:??? -> ?offering:??? -> ?quantity:??? -> ?effectiveOn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Double of Double.t | `Enum of string ]) list ]) list ] list | `String of OfferingIdentifier.t ]) list | `Timestamp of DateTime.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