Class: EveOnline::ESI::Wars
Constant Summary collapse
- API_PATH =
"/v1/wars/"
Constants inherited from Base
Instance Attribute Summary collapse
-
#max_war_id ⇒ Object
readonly
Returns the value of attribute max_war_id.
Attributes inherited from Base
#_open_timeout, #_read_timeout, #_write_timeout, #adapter, #language, #middlewares, #token
Instance Method Summary collapse
- #additional_query_params ⇒ Object
-
#initialize(options = {}) ⇒ Wars
constructor
A new instance of Wars.
- #path ⇒ Object
- #scope ⇒ Object
- #war_ids ⇒ Object
Methods inherited from Base
#add_middleware, #base_query_params, #connection, #error_limit_remain, #error_limit_reset, #http_method, #open_timeout, #open_timeout=, #page, #query, #read_timeout, #read_timeout=, #request_id, #resource, #response, #total_pages, #uri, #url, #user_agent, #write_timeout, #write_timeout=
Constructor Details
#initialize(options = {}) ⇒ Wars
Returns a new instance of Wars.
10 11 12 13 14 |
# File 'lib/eve_online/esi/wars.rb', line 10 def initialize( = {}) super @max_war_id = .fetch(:max_war_id, nil) end |
Instance Attribute Details
#max_war_id ⇒ Object (readonly)
Returns the value of attribute max_war_id.
8 9 10 |
# File 'lib/eve_online/esi/wars.rb', line 8 def max_war_id @max_war_id end |
Instance Method Details
#additional_query_params ⇒ Object
23 24 25 |
# File 'lib/eve_online/esi/wars.rb', line 23 def additional_query_params [:max_war_id] end |
#path ⇒ Object
27 28 29 |
# File 'lib/eve_online/esi/wars.rb', line 27 def path API_PATH end |
#scope ⇒ Object
20 21 |
# File 'lib/eve_online/esi/wars.rb', line 20 def scope end |
#war_ids ⇒ Object
16 17 18 |
# File 'lib/eve_online/esi/wars.rb', line 16 def war_ids response end |