Module Send_delegation.Send_delegation_inner

module Raw : sig ... end
type t_sendDelegation_delegation = {
id : Graphql_lib.Scalars.TransactionId.t;
}
type t_sendDelegation = {
delegation : t_sendDelegation_delegation;
}
type t = {
sendDelegation : t_sendDelegation;
}
type t_variables = {
sender : Graphql_ppx_runtime.Json.t;
receiver : Graphql_ppx_runtime.Json.t;
fee : Graphql_ppx_runtime.Json.t;
nonce : Graphql_ppx_runtime.Json.t option;
memo : string 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 : sender:Encoders.PublicKey.input -> receiver:Encoders.PublicKey.input -> fee:Encoders.UInt64.input -> ?nonce:Encoders.UInt32.input -> ?memo:string -> 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