Class: Mushikago::Hanamgri::SearchSchemaRequest
- Inherits:
-
Mushikago::Http::GetRequest
- Object
- Mushikago::Http::Request
- Mushikago::Http::GetRequest
- Mushikago::Hanamgri::SearchSchemaRequest
- Defined in:
- lib/mushikago/hanamgri/search_schema_request.rb
Instance Attribute Summary collapse
-
#domain_name ⇒ Object
Returns the value of attribute domain_name.
Attributes inherited from Mushikago::Http::Request
#headers, #host, #params, #port
Instance Method Summary collapse
-
#initialize(domain_name, query_key, query_value, options = {}) ⇒ SearchSchemaRequest
constructor
A new instance of SearchSchemaRequest.
- #path ⇒ Object
Methods inherited from Mushikago::Http::GetRequest
Methods included from Auth::Signature
#add_signature!, #string_to_sign
Methods inherited from Mushikago::Http::Request
#[], #[]=, add_param, #to_http_request, #url_encoded_params
Constructor Details
#initialize(domain_name, query_key, query_value, options = {}) ⇒ SearchSchemaRequest
Returns a new instance of SearchSchemaRequest.
10 11 12 13 14 15 |
# File 'lib/mushikago/hanamgri/search_schema_request.rb', line 10 def initialize domain_name, query_key, query_value, ={} super() self.domain_name = domain_name self.query_key = query_key self.query_value = query_value end |
Instance Attribute Details
#domain_name ⇒ Object
Returns the value of attribute domain_name.
6 7 8 |
# File 'lib/mushikago/hanamgri/search_schema_request.rb', line 6 def domain_name @domain_name end |
Instance Method Details
#path ⇒ Object
5 |
# File 'lib/mushikago/hanamgri/search_schema_request.rb', line 5 def path; "/1/hanamgri/domains/#{domain_name}/schema/search" end |