Class: 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
Attributes inherited from Base
Method Summary
Methods inherited from Base
Constructor Details
This class inherits a constructor from Warframe::Models::Base
Instance Attribute Details
#amount ⇒ Integer (readonly)
The amount of challenges that must be completed.
27 28 29 |
# File 'lib/warframe/models/conclave_challenge.rb', line 27 def amount @amount end |
#as_string ⇒ String (readonly)
The challenge information in a one line string.
47 48 49 |
# File 'lib/warframe/models/conclave_challenge.rb', line 47 def as_string @as_string end |
#category ⇒ String (readonly)
The category of mission, usually ‘weekly’ / ‘daily’.
39 40 41 |
# File 'lib/warframe/models/conclave_challenge.rb', line 39 def category @category end |
#daily ⇒ Boolean (readonly)
Whether or not this is a daily mission.
43 44 45 |
# File 'lib/warframe/models/conclave_challenge.rb', line 43 def daily @daily end |
#mode ⇒ String (readonly)
The mode of the conclave.
23 24 25 |
# File 'lib/warframe/models/conclave_challenge.rb', line 23 def mode @mode end |
#root_challenge ⇒ Boolean (readonly)
Whether or not this is a root challenge.
51 52 53 |
# File 'lib/warframe/models/conclave_challenge.rb', line 51 def root_challenge @root_challenge end |
#standing ⇒ Integer (readonly)
The amount of standing you will gain upon completion.
31 32 33 |
# File 'lib/warframe/models/conclave_challenge.rb', line 31 def standing @standing end |
#title ⇒ String (readonly)
The title of the challenge.
35 36 37 |
# File 'lib/warframe/models/conclave_challenge.rb', line 35 def title @title end |