Module Graphql_queries.Send_payment

module Send_payment_inner : sig ... end
include module type of struct include Send_payment_inner end
type t_sendPayment = Send_payment_inner.t_sendPayment = {
payment : t_sendPayment_payment;
}
type t = Send_payment_inner.t = {
sendPayment : t_sendPayment;
}
type t_variables = Send_payment_inner.t_variables = {
input : Graphql_ppx_runtime.Json.t;
}
and t_variables_SendPaymentInput = Send_payment_inner.t_variables_SendPaymentInput = {
nonce : Graphql_ppx_runtime.Json.t option;
memo : string option;
validUntil : Graphql_ppx_runtime.Json.t option;
fee : Graphql_ppx_runtime.Json.t;
amount : Graphql_ppx_runtime.Json.t;
to_ : Graphql_ppx_runtime.Json.t;
from : Graphql_ppx_runtime.Json.t;
}
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 serializeInputObjectSendPaymentInput : t_variables_SendPaymentInput -> Raw.t_variables_SendPaymentInput
val makeVariables : input:Encoders.SendPaymentInput.input -> unit -> t_variables
val makeInputObjectSendPaymentInput : ?nonce:Encoders.UInt32.input -> ?memo:string -> ?validUntil:Encoders.UInt32.input -> fee:Encoders.UInt64.input -> amount:Encoders.UInt64.input -> to_:Encoders.PublicKey.input -> from:Encoders.PublicKey.input -> unit -> t_variables_SendPaymentInput
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(Send_payment_inner) end
val make : Send_payment_inner.t_variables -> < parse : Yojson.Basic.t -> Send_payment_inner.t ; query : Base.string ; variables : Yojson.Basic.t >