Class: 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
Attributes inherited from Base
Method Summary
Methods inherited from Base
Constructor Details
This class inherits a constructor from Warframe::Models::Base
Instance Attribute Details
#active_challenges ⇒ Array<OpenStruct> (readonly)
Active Challenges for this event.
37 38 39 |
# File 'lib/warframe/models/nightwave.rb', line 37 def active_challenges @active_challenges end |
#phase ⇒ Integer (readonly)
The current phase of this event.
21 22 23 |
# File 'lib/warframe/models/nightwave.rb', line 21 def phase @phase end |
#possible_challenges ⇒ Array<OpenStruct> (readonly)
List of all possible challenges.
33 34 35 |
# File 'lib/warframe/models/nightwave.rb', line 33 def possible_challenges @possible_challenges end |
#season ⇒ Integer (readonly)
The current Nightwave Season
29 30 31 |
# File 'lib/warframe/models/nightwave.rb', line 29 def season @season end |
#tag ⇒ String (readonly)
The current Nightwave Tag
25 26 27 |
# File 'lib/warframe/models/nightwave.rb', line 25 def tag @tag end |