Module Values.BatchGetTokenBalanceOutputItemSource

The container for the properties of a token balance output.

Sourcetype nonrec t = {
  1. ownerIdentifier : OwnerIdentifier.t option;
  2. tokenIdentifier : TokenIdentifier.t option;
  3. balance : String_.t option;
    (*

    The container for the token balance.

    *)
  4. atBlockchainInstant : BlockchainInstant.t option;
  5. lastUpdatedTime : BlockchainInstant.t option;
}
Sourceval make : ?ownerIdentifier:??? -> ?tokenIdentifier:??? -> ?balance:??? -> ?atBlockchainInstant:??? -> ?lastUpdatedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Enum of string | `String of ChainAddress.t | `Timestamp of Timestamp.t ]) list ]) 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