Class: Warframe::Models::Cetus

Inherits:
Base
  • Object
show all
Includes:
Attributes::Activation, Attributes::Expiry, Attributes::ID
Defined in:
lib/warframe/models/cetus.rb

Overview

Cetus data model. /:platform/cetusCycle

Instance Attribute Summary collapse

Attributes included from Attributes::Expiry

#expiry

Attributes included from Attributes::Activation

#activation

Attributes included from Attributes::ID

#id

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

#is_cetusBoolean (readonly) Also known as: cetus?

Whether or not this is Cetus.

Returns:

  • (Boolean)


28
29
30
# File 'lib/warframe/models/cetus.rb', line 28

def is_cetus
  @is_cetus
end

#is_dayBoolean (readonly) Also known as: day?

Whether or not it is currently day.

Returns:

  • (Boolean)


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

def is_day
  @is_day
end

#short_stringString (readonly)

A short string of the time left until state change.

Returns:

  • (String)


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

def short_string
  @short_string
end

#stateString (readonly)

Current world state of Cetus.

Returns:

  • (String)


24
25
26
# File 'lib/warframe/models/cetus.rb', line 24

def state
  @state
end

#time_leftString (readonly)

Time left until state change.

Returns:

  • (String)


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

def time_left
  @time_left
end