Class: EveOnline::ESI::Models::Position
- Inherits:
-
Base
- Object
- Base
- EveOnline::ESI::Models::Position
show all
- Defined in:
- lib/eve_online/esi/models/position.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/position.rb', line 7
def as_json
{
x: x,
y: y,
z: z
}
end
|
#x ⇒ Object
15
16
17
|
# File 'lib/eve_online/esi/models/position.rb', line 15
def x
options["x"]
end
|
#y ⇒ Object
19
20
21
|
# File 'lib/eve_online/esi/models/position.rb', line 19
def y
options["y"]
end
|
#z ⇒ Object
23
24
25
|
# File 'lib/eve_online/esi/models/position.rb', line 23
def z
options["z"]
end
|