Class: EveOnline::ESI::Models::Region
- Inherits:
-
Base
- Object
- Base
- EveOnline::ESI::Models::Region
show all
- Defined in:
- lib/eve_online/esi/models/region.rb
Instance Attribute Summary
Attributes inherited from Base
#options
Instance Method Summary
collapse
Methods inherited from Base
#initialize
Instance Method Details
#as_json ⇒ Object
7
8
9
10
11
12
13
|
# File 'lib/eve_online/esi/models/region.rb', line 7
def as_json
{
description: description,
name: name,
region_id: region_id
}
end
|
#constellation_ids ⇒ Object
27
28
29
|
# File 'lib/eve_online/esi/models/region.rb', line 27
def constellation_ids
options["constellations"]
end
|
#description ⇒ Object
15
16
17
|
# File 'lib/eve_online/esi/models/region.rb', line 15
def description
options["description"]
end
|
#name ⇒ Object
19
20
21
|
# File 'lib/eve_online/esi/models/region.rb', line 19
def name
options["name"]
end
|
#region_id ⇒ Object
23
24
25
|
# File 'lib/eve_online/esi/models/region.rb', line 23
def region_id
options["region_id"]
end
|