Class: MergeHRISClient::TimeOffStatusEnum

Inherits:
Object
  • Object
show all
Defined in:
lib/merge_hris_client/models/time_off_status_enum.rb

Constant Summary collapse

REQUESTED =
"REQUESTED".freeze
APPROVED =
"APPROVED".freeze
DECLINED =
"DECLINED".freeze
CANCELLED =
"CANCELLED".freeze
DELETED =
"DELETED".freeze
MERGE_NONSTANDARD_VALUE =
"MERGE_NONSTANDARD_VALUE".freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#raw_valueObject

Returns the value of attribute raw_value.



27
28
29
# File 'lib/merge_hris_client/models/time_off_status_enum.rb', line 27

def raw_value
  @raw_value
end

#valueObject

Returns the value of attribute value.



26
27
28
# File 'lib/merge_hris_client/models/time_off_status_enum.rb', line 26

def value
  @value
end

Class Method Details

.build_from_hash(value) ⇒ Object



43
44
45
# File 'lib/merge_hris_client/models/time_off_status_enum.rb', line 43

def self.build_from_hash(value)
  TimeOffStatusEnum.new.build_from_hash(value)
end

Instance Method Details

#build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



32
33
34
35
36
37
38
39
40
41
# File 'lib/merge_hris_client/models/time_off_status_enum.rb', line 32

def build_from_hash(value)
  @raw_value = value
  if ["REQUESTED", "APPROVED", "DECLINED", "CANCELLED", "DELETED", ].include? value
    @value = value
  else
    @value = MERGE_NONSTANDARD_VALUE
  end

  self
end