Graphql_queries.Send_payment
module Send_payment_inner : sig ... end
include module type of struct include Send_payment_inner end
module Raw = Send_payment_inner.Raw
type t_sendPayment_payment = Send_payment_inner.t_sendPayment_payment = {
id : Graphql_lib.Scalars.TransactionId.t; |
}
and t_variables_SendPaymentInput =
Send_payment_inner.t_variables_SendPaymentInput =
{
}
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 >