Class: Warframe::Models::ConclaveChallenge

Inherits:
Base show all
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

Attributes included from Attributes::Activation

#activation

Attributes included from Attributes::ID

#id

Attributes included from Attributes::Description

#description

Attributes included from Attributes::ETA

#eta

Attributes included from Attributes::Expired

#expired

Attributes included from Attributes::Expiry

#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

#amountInteger (readonly)

The amount of challenges that must be completed.

Returns:

  • (Integer)


21
22
23
# File 'lib/warframe/models/conclave_challenge.rb', line 21

def amount
  @amount
end

#as_stringString (readonly)

The challenge information in a one line string.

Returns:

  • (String)


41
42
43
# File 'lib/warframe/models/conclave_challenge.rb', line 41

def as_string
  @as_string
end

#categoryString (readonly)

The category of mission, usually ‘weekly’ / ‘daily’.

Returns:

  • (String)


33
34
35
# File 'lib/warframe/models/conclave_challenge.rb', line 33

def category
  @category
end

#dailyBoolean (readonly)

Whether or not this is a daily mission.

Returns:

  • (Boolean)


37
38
39
# File 'lib/warframe/models/conclave_challenge.rb', line 37

def daily
  @daily
end

#modeString (readonly)

The mode of the conclave.

Returns:

  • (String)


17
18
19
# File 'lib/warframe/models/conclave_challenge.rb', line 17

def mode
  @mode
end

#root_challengeBoolean (readonly)

Whether or not this is a root challenge.

Returns:

  • (Boolean)


45
46
47
# File 'lib/warframe/models/conclave_challenge.rb', line 45

def root_challenge
  @root_challenge
end

#standingInteger (readonly)

The amount of standing you will gain upon completion.

Returns:

  • (Integer)


25
26
27
# File 'lib/warframe/models/conclave_challenge.rb', line 25

def standing
  @standing
end

#titleString (readonly)

The title of the challenge.

Returns:

  • (String)


29
30
31
# File 'lib/warframe/models/conclave_challenge.rb', line 29

def title
  @title
end