Class: MergeHRISClient::SyncStatusStatusEnum

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

Constant Summary collapse

SYNCING =
"SYNCING".freeze
DONE =
"DONE".freeze
FAILED =
"FAILED".freeze
DISABLED =
"DISABLED".freeze
PAUSED =
"PAUSED".freeze
PARTIALLY_SYNCED =
"PARTIALLY_SYNCED".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.



28
29
30
# File 'lib/merge_hris_client/models/sync_status_status_enum.rb', line 28

def raw_value
  @raw_value
end

#valueObject

Returns the value of attribute value.



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

def value
  @value
end

Class Method Details

.build_from_hash(value) ⇒ Object



44
45
46
# File 'lib/merge_hris_client/models/sync_status_status_enum.rb', line 44

def self.build_from_hash(value)
  SyncStatusStatusEnum.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



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

def build_from_hash(value)
  @raw_value = value
  if ["SYNCING", "DONE", "FAILED", "DISABLED", "PAUSED", "PARTIALLY_SYNCED", ].include? value
    @value = value
  else
    @value = MERGE_NONSTANDARD_VALUE
  end

  self
end