Class: Warframe::Models::Nightwave
- Inherits:
-
Base
- Object
- ObjectifiedHash
- Base
- Warframe::Models::Nightwave
- Defined in:
- lib/warframe/models/nightwave.rb
Overview
Nightwave data model. /:platform/nightwave
Instance Attribute Summary collapse
-
#active_challenges ⇒ Array<OpenStruct>
readonly
Active Challenges for this event.
-
#phase ⇒ Integer
readonly
The current phase of this event.
-
#possible_challenges ⇒ Array<OpenStruct>
readonly
List of all possible challenges.
-
#season ⇒ Integer
readonly
The current Nightwave Season.
-
#tag ⇒ String
readonly
The current Nightwave Tag.
Attributes included from Attributes::RewardTypes
Attributes included from Attributes::Expiry
Attributes included from Attributes::ID
Attributes included from Attributes::Activation
Method Summary
Methods inherited from ObjectifiedHash
#[], from_array, #initialize, #inspect, #size, #to_hash, #to_s
Constructor Details
This class inherits a constructor from Warframe::Models::ObjectifiedHash
Instance Attribute Details
#active_challenges ⇒ Array<OpenStruct> (readonly)
Active Challenges for this event.
32 33 34 |
# File 'lib/warframe/models/nightwave.rb', line 32 def active_challenges @active_challenges end |
#phase ⇒ Integer (readonly)
The current phase of this event.
16 17 18 |
# File 'lib/warframe/models/nightwave.rb', line 16 def phase @phase end |
#possible_challenges ⇒ Array<OpenStruct> (readonly)
List of all possible challenges.
28 29 30 |
# File 'lib/warframe/models/nightwave.rb', line 28 def possible_challenges @possible_challenges end |
#season ⇒ Integer (readonly)
The current Nightwave Season
24 25 26 |
# File 'lib/warframe/models/nightwave.rb', line 24 def season @season end |
#tag ⇒ String (readonly)
The current Nightwave Tag
20 21 22 |
# File 'lib/warframe/models/nightwave.rb', line 20 def tag @tag end |