Module Values.OfferingTransactionSource

Represents the metadata of an offering transaction.

Sourcetype nonrec t = {
  1. offeringStatus : OfferingStatus.t option;
    (*

    The status of an offering transaction.

    *)
  2. transactionId : TransactionIdentifier.t option;
    (*

    The transaction ID of the offering transaction.

    *)
  3. offeringPromotionId : OfferingPromotionIdentifier.t option;
    (*

    The ID that corresponds to a device offering promotion.

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

    The date on which an offering transaction was created.

    *)
  5. cost : MonetaryAmount.t option;
    (*

    The cost of an offering transaction.

    *)
}
Sourceval make : ?offeringStatus:??? -> ?transactionId:??? -> ?offeringPromotionId:??? -> ?createdOn:??? -> ?cost:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TransactionIdentifier.t | `Structure of (string * [> `Double of Double.t | `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 | `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