Module Get_tracked_account.Get_tracked_account_inner

module Raw : sig ... end
type t_account_balance = {
total : Graphql_lib.Scalars.Balance.t;
}
type t_account = {
balance : t_account_balance;
}
type t = {
account : t_account option;
}
type t_variables = {
public_key : Graphql_ppx_runtime.Json.t;
token : Graphql_ppx_runtime.Json.t option;
}
val query : string

The GraphQL query

val parse : Raw.t -> t

Parse the JSON-compatible GraphQL data to ReasonML data types

val serialize : t -> Raw.t

Serialize the ReasonML GraphQL data that was parsed using the parse function back to the original JSON compatible data

val serializeVariables : t_variables -> Raw.t_variables
val makeVariables : public_key:Encoders.PublicKey.input -> ?token:Encoders.TokenId.input -> unit -> t_variables
val unsafe_fromJson : Graphql_ppx_runtime.Json.t -> Raw.t
val toJson : Raw.t -> Graphql_ppx_runtime.Json.t
val variablesToJson : Raw.t_variables -> Graphql_ppx_runtime.Json.t