Module Send_payment.Send_payment_inner

module Raw : sig ... end
type t_sendPayment_payment = {
id : Graphql_lib.Scalars.TransactionId.t;
}
type t_sendPayment = {
payment : t_sendPayment_payment;
}
type t = {
sendPayment : t_sendPayment;
}
type t_variables = {
input : Graphql_ppx_runtime.Json.t;
}
and 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