Class: Warframe::Models::ConclaveChallenge

Inherits:
Base
  • Object
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

Attributes inherited from Base

#code, #error

Method Summary

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Warframe::Models::Base

Instance Attribute Details

#amountInteger (readonly)

The amount of challenges that must be completed.

Returns:

  • (Integer)


27
28
29
# File 'lib/warframe/models/conclave_challenge.rb', line 27

def amount
  @amount
end

#as_stringString (readonly)

The challenge information in a one line string.

Returns:

  • (String)


47
48
49
# File 'lib/warframe/models/conclave_challenge.rb', line 47

def as_string
  @as_string
end

#categoryString (readonly)

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

Returns:

  • (String)


39
40
41
# File 'lib/warframe/models/conclave_challenge.rb', line 39

def category
  @category
end

#dailyBoolean (readonly)

Whether or not this is a daily mission.

Returns:

  • (Boolean)


43
44
45
# File 'lib/warframe/models/conclave_challenge.rb', line 43

def daily
  @daily
end

#modeString (readonly)

The mode of the conclave.

Returns:

  • (String)


23
24
25
# File 'lib/warframe/models/conclave_challenge.rb', line 23

def mode
  @mode
end

#root_challengeBoolean (readonly)

Whether or not this is a root challenge.

Returns:

  • (Boolean)


51
52
53
# File 'lib/warframe/models/conclave_challenge.rb', line 51

def root_challenge
  @root_challenge
end

#standingInteger (readonly)

The amount of standing you will gain upon completion.

Returns:

  • (Integer)


31
32
33
# File 'lib/warframe/models/conclave_challenge.rb', line 31

def standing
  @standing
end

#titleString (readonly)

The title of the challenge.

Returns:

  • (String)


35
36
37
# File 'lib/warframe/models/conclave_challenge.rb', line 35

def title
  @title
end