Class: Warframe::Models::SteelPath
- Includes:
- Attributes::Active, Attributes::Expiry
- Defined in:
- lib/warframe/models/steel_path.rb
Overview
SteelPath data model. /:platform/steelPath
Instance Attribute Summary collapse
-
#current_reward ⇒ OpenStruct
readonly
The currently available item from Teshin.
-
#evergreens ⇒ Array<OpenStruct>
readonly
Current rotation of items Teshin has to offer.
-
#incursions ⇒ OpenStruct
readonly
Current incursion data.
-
#remaining ⇒ String
readonly
The time remaining of the current reward.
-
#rotation ⇒ Array<OpenStruct>
readonly
Current rotation of items the Arbiters have to offer.
Attributes included from Attributes::Expiry
Attributes included from Attributes::Active
Attributes inherited from Base
Method Summary
Methods inherited from Base
Constructor Details
This class inherits a constructor from Warframe::Models::Base
Instance Attribute Details
#current_reward ⇒ OpenStruct (readonly)
The currently available item from Teshin.
15 16 17 |
# File 'lib/warframe/models/steel_path.rb', line 15 def current_reward @current_reward end |
#evergreens ⇒ Array<OpenStruct> (readonly)
Current rotation of items Teshin has to offer.
27 28 29 |
# File 'lib/warframe/models/steel_path.rb', line 27 def evergreens @evergreens end |
#incursions ⇒ OpenStruct (readonly)
Current incursion data
31 32 33 |
# File 'lib/warframe/models/steel_path.rb', line 31 def incursions @incursions end |
#remaining ⇒ String (readonly)
The time remaining of the current reward.
19 20 21 |
# File 'lib/warframe/models/steel_path.rb', line 19 def remaining @remaining end |
#rotation ⇒ Array<OpenStruct> (readonly)
Current rotation of items the Arbiters have to offer.
23 24 25 |
# File 'lib/warframe/models/steel_path.rb', line 23 def rotation @rotation end |