class Io::Flow::V0::Models::GraphqlRequest
Attributes
operation_name[R]
query[R]
variables[R]
Public Class Methods
new(incoming={})
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 44370 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:query], 'GraphqlRequest') @query = HttpClient::Preconditions.assert_class('query', opts.delete(:query), String) @operation_name = (x = opts.delete(:operation_name); x.nil? ? nil : HttpClient::Preconditions.assert_class('operation_name', x, String)) @variables = (x = opts.delete(:variables); x.nil? ? nil : HttpClient::Preconditions.assert_class('variables', x, Hash).inject({}) { |h, d| h[d[0]] = HttpClient::Preconditions.assert_class('variables', d[1], String); h }) end
Public Instance Methods
copy(incoming={})
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 44382 def copy(incoming={}) GraphqlRequest.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end
to_hash()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 44386 def to_hash { :query => query, :operation_name => operation_name, :variables => variables.nil? ? nil : variables } end
to_json()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 44378 def to_json JSON.dump(to_hash) end