Class: Warframe::Models::GlobalUpgrade

Inherits:
Base
  • Object
show all
Includes:
Attributes::Desc, Attributes::ETA, Attributes::Expired
Defined in:
lib/warframe/models/global_upgrade.rb

Overview

Global Upgrades data model. /:platform/globalUpgrades

Instance Attribute Summary collapse

Attributes included from Attributes::ETA

#eta

Attributes included from Attributes::Desc

#desc

Attributes included from Attributes::Expired

#expired

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

#endString (readonly)

The end of the global upgrade.

Returns:

  • (String)


22
23
24
# File 'lib/warframe/models/global_upgrade.rb', line 22

def end
  @end
end

#operationString (readonly)

The operation of the global upgrade.

Returns:

  • (String)


30
31
32
# File 'lib/warframe/models/global_upgrade.rb', line 30

def operation
  @operation
end

#operation_symbolString (readonly)

The symbol of the operation.

Returns:

  • (String)


34
35
36
# File 'lib/warframe/models/global_upgrade.rb', line 34

def operation_symbol
  @operation_symbol
end

#startString (readonly)

The start of the global upgrade.

Returns:

  • (String)


18
19
20
# File 'lib/warframe/models/global_upgrade.rb', line 18

def start
  @start
end

#upgradeString (readonly)

The upgrade to be received.

Returns:

  • (String)


26
27
28
# File 'lib/warframe/models/global_upgrade.rb', line 26

def upgrade
  @upgrade
end

#upgrade_operation_valueInteger (readonly)

The upgrade operation value.

Returns:

  • (Integer)


38
39
40
# File 'lib/warframe/models/global_upgrade.rb', line 38

def upgrade_operation_value
  @upgrade_operation_value
end