Module Values.TransactionOutputItemSource

The container of the transaction output.

Sourcetype nonrec t = {
  1. transactionHash : QueryTransactionHash.t option;
    (*

    The hash of a transaction. It is generated when a transaction is created.

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

    The identifier of a Bitcoin transaction. It is generated when a transaction is created.

    *)
  3. network : QueryNetwork.t option;
    (*

    The blockchain network where the transaction occurred.

    *)
  4. transactionTimestamp : Timestamp.t option;
    (*

    The time when the transaction occurred.

    *)
  5. confirmationStatus : ConfirmationStatus.t option;
    (*

    Specifies whether to list transactions that have not reached Finality.

    *)
}
Sourceval make : ?transactionHash:??? -> ?transactionId:??? -> ?network:??? -> ?transactionTimestamp:??? -> ?confirmationStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of QueryTransactionHash.t | `Timestamp of Timestamp.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