Class: EveOnline::ESI::Models::AssetName
- Inherits:
-
Base
- Object
- Base
- EveOnline::ESI::Models::AssetName
show all
- Defined in:
- lib/eve_online/esi/models/asset_name.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
|
# File 'lib/eve_online/esi/models/asset_name.rb', line 7
def as_json
{
item_id: item_id,
name: name
}
end
|
#item_id ⇒ Object
14
15
16
|
# File 'lib/eve_online/esi/models/asset_name.rb', line 14
def item_id
options["item_id"]
end
|
#name ⇒ Object
18
19
20
|
# File 'lib/eve_online/esi/models/asset_name.rb', line 18
def name
options["name"]
end
|