Class: Io::Flow::V0::Models::Query
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::Query
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
The query model is used to present a query to a user, containing both the raw query as well as the filter representation of the query.
Instance Attribute Summary collapse
-
#filters ⇒ Object
readonly
Returns the value of attribute filters.
-
#q ⇒ Object
readonly
Returns the value of attribute q.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ Query
constructor
A new instance of Query.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ Query
Returns a new instance of Query.
43909 43910 43911 43912 43913 43914 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43909 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:q, :filters], 'Query') @q = HttpClient::Preconditions.assert_class('q', opts.delete(:q), String) @filters = HttpClient::Preconditions.assert_class('filters', opts.delete(:filters), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::QueryFilter) ? x : ::Io::Flow::V0::Models::QueryFilter.from_json(x)) } end |
Instance Attribute Details
#filters ⇒ Object (readonly)
Returns the value of attribute filters.
43907 43908 43909 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43907 def filters @filters end |
#q ⇒ Object (readonly)
Returns the value of attribute q.
43907 43908 43909 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43907 def q @q end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
43920 43921 43922 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43920 def copy(incoming={}) Query.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
43924 43925 43926 43927 43928 43929 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43924 def to_hash { :q => q, :filters => filters.map { |o| o.to_hash } } end |
#to_json ⇒ Object
43916 43917 43918 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43916 def to_json JSON.dump(to_hash) end |