Class: Warframe::Models::ConclaveChallenge
- Inherits:
-
Base
- Object
- ObjectifiedHash
- Base
- Warframe::Models::ConclaveChallenge
- Includes:
- Attributes::Activation, Attributes::Description, Attributes::ETA, Attributes::Expiration, Attributes::ID
- Defined in:
- lib/warframe/models/conclave_challenge.rb
Overview
Conclave Challenges data model. /:platform/conclaveChallenges
Instance Attribute Summary collapse
-
#amount ⇒ Integer
readonly
The amount of challenges that must be completed.
-
#as_string ⇒ String
readonly
The challenge information in a one line string.
-
#category ⇒ String
readonly
The category of mission, usually ‘weekly’ / ‘daily’.
-
#daily ⇒ Boolean
readonly
Whether or not this is a daily mission.
-
#mode ⇒ String
readonly
The mode of the conclave.
-
#root_challenge ⇒ Boolean
readonly
Whether or not this is a root challenge.
-
#standing ⇒ Integer
readonly
The amount of standing you will gain upon completion.
-
#title ⇒ String
readonly
The title of the challenge.
Attributes included from Attributes::Activation
Attributes included from Attributes::ID
Attributes included from Attributes::Description
Attributes included from Attributes::ETA
Attributes included from Attributes::Expired
Attributes included from Attributes::Expiry
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
#amount ⇒ Integer (readonly)
The amount of challenges that must be completed.
21 22 23 |
# File 'lib/warframe/models/conclave_challenge.rb', line 21 def amount @amount end |
#as_string ⇒ String (readonly)
The challenge information in a one line string.
41 42 43 |
# File 'lib/warframe/models/conclave_challenge.rb', line 41 def as_string @as_string end |
#category ⇒ String (readonly)
The category of mission, usually ‘weekly’ / ‘daily’.
33 34 35 |
# File 'lib/warframe/models/conclave_challenge.rb', line 33 def category @category end |
#daily ⇒ Boolean (readonly)
Whether or not this is a daily mission.
37 38 39 |
# File 'lib/warframe/models/conclave_challenge.rb', line 37 def daily @daily end |
#mode ⇒ String (readonly)
The mode of the conclave.
17 18 19 |
# File 'lib/warframe/models/conclave_challenge.rb', line 17 def mode @mode end |
#root_challenge ⇒ Boolean (readonly)
Whether or not this is a root challenge.
45 46 47 |
# File 'lib/warframe/models/conclave_challenge.rb', line 45 def root_challenge @root_challenge end |
#standing ⇒ Integer (readonly)
The amount of standing you will gain upon completion.
25 26 27 |
# File 'lib/warframe/models/conclave_challenge.rb', line 25 def standing @standing end |
#title ⇒ String (readonly)
The title of the challenge.
29 30 31 |
# File 'lib/warframe/models/conclave_challenge.rb', line 29 def title @title end |