Graphql_queries.Send_paymentmodule Send_payment_inner : sig ... endinclude module type of struct include Send_payment_inner endmodule Raw = Send_payment_inner.Rawtype 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_variablesval serializeInputObjectSendPaymentInput :
t_variables_SendPaymentInput ->
Raw.t_variables_SendPaymentInputval makeVariables :
input:Encoders.SendPaymentInput.input ->
unit ->
t_variablesval 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_SendPaymentInputval unsafe_fromJson : Graphql_ppx_runtime.Json.t -> Raw.tval toJson : Raw.t -> Graphql_ppx_runtime.Json.tval variablesToJson : Raw.t_variables -> Graphql_ppx_runtime.Json.tinclude module type of struct include Graphql_lib.Serializing.ExtendQuery(Send_payment_inner) endval make :
Send_payment_inner.t_variables ->
< parse : Yojson.Basic.t -> Send_payment_inner.t
; query : Base.string
; variables : Yojson.Basic.t >