Class: Warframe::Models::GlobalUpgrade

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

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

#endString (readonly)

The end of the global upgrade.

Returns:

  • (String)


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

def end
  @end
end

#operationString (readonly)

The operation of the global upgrade.

Returns:

  • (String)


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

def operation
  @operation
end

#operation_symbolString (readonly)

The symbol of the operation.

Returns:

  • (String)


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

def operation_symbol
  @operation_symbol
end

#startString (readonly)

The start of the global upgrade.

Returns:

  • (String)


15
16
17
# File 'lib/warframe/models/global_upgrade.rb', line 15

def start
  @start
end

#upgradeString (readonly)

The upgrade to be received.

Returns:

  • (String)


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

def upgrade
  @upgrade
end

#upgrade_operation_valueInteger (readonly)

The upgrade operation value.

Returns:

  • (Integer)


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

def upgrade_operation_value
  @upgrade_operation_value
end