Construction.Get_options_metadata
module Get_options_metadata_inner : sig ... end
include module type of struct include Get_options_metadata_inner end
module Raw = Get_options_metadata_inner.Raw
type t_bestChain_transactions_userCommands =
Get_options_metadata_inner.t_bestChain_transactions_userCommands =
{
fee : Scalars.UInt64.t; |
}
type t_bestChain_transactions =
Get_options_metadata_inner.t_bestChain_transactions =
{
userCommands : t_bestChain_transactions_userCommands array; |
}
type t_bestChain = Get_options_metadata_inner.t_bestChain = {
transactions : t_bestChain_transactions; |
}
type t_receiver = Get_options_metadata_inner.t_receiver = {
nonce : Graphql_lib.Scalars.AccountNonce.t option; |
}
type t_account_balance = Get_options_metadata_inner.t_account_balance = {
blockHeight : Scalars.UInt32.t; |
stateHash : Graphql_lib.Scalars.StateHash.t option; |
}
type t_account = Get_options_metadata_inner.t_account = {
balance : t_account_balance; |
nonce : Graphql_lib.Scalars.AccountNonce.t option; |
}
type t = Get_options_metadata_inner.t = {
bestChain : t_bestChain array option; |
receiver : t_receiver option; |
account : t_account option; |
daemonStatus : t_daemonStatus; |
initialPeers : string array; |
}
type t_variables = Get_options_metadata_inner.t_variables = {
sender : Graphql_ppx_runtime.Json.t; |
token_id : Graphql_ppx_runtime.Json.t option; |
receiver_key : Graphql_ppx_runtime.Json.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 :
sender:Graphql_ppx_runtime.Json.t ->
?token_id:Graphql_ppx_runtime.Json.t ->
receiver_key:Graphql_ppx_runtime.Json.t ->
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
include module type of struct include Graphql_lib.Serializing.ExtendQuery(Get_options_metadata_inner) end
val make :
Get_options_metadata_inner.t_variables ->
< parse : Yojson.Basic.t -> Get_options_metadata_inner.t
; query : Base.string
; variables : Yojson.Basic.t >