Class: CandidApiClient::Commons::Types::UpdatesDisabledDueToExternalSystemIntegrationErrorMessage

Inherits:
Object
  • Object
show all
Defined in:
lib/candidhealth/commons/types/updates_disabled_due_to_external_system_integration_error_message.rb

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message: OMIT, additional_properties: nil) ⇒ CandidApiClient::Commons::Types::UpdatesDisabledDueToExternalSystemIntegrationErrorMessage

Parameters:

  • message (String) (defaults to: OMIT)
  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



23
24
25
26
27
28
29
# File 'lib/candidhealth/commons/types/updates_disabled_due_to_external_system_integration_error_message.rb', line 23

def initialize(message: OMIT, additional_properties: nil)
  @message = message if message != OMIT
  @additional_properties = additional_properties
  @_field_set = { "message": message }.reject do |_k, v|
    v == OMIT
  end
end

Instance Attribute Details

#additional_propertiesOpenStruct (readonly)

Returns Additional properties unmapped to the current class definition.

Returns:

  • (OpenStruct)

    Additional properties unmapped to the current class definition



13
14
15
# File 'lib/candidhealth/commons/types/updates_disabled_due_to_external_system_integration_error_message.rb', line 13

def additional_properties
  @additional_properties
end

#messageString (readonly)

Returns:

  • (String)


11
12
13
# File 'lib/candidhealth/commons/types/updates_disabled_due_to_external_system_integration_error_message.rb', line 11

def message
  @message
end

Class Method Details

.from_json(json_object:) ⇒ CandidApiClient::Commons::Types::UpdatesDisabledDueToExternalSystemIntegrationErrorMessage

Deserialize a JSON object to an instance of

UpdatesDisabledDueToExternalSystemIntegrationErrorMessage


36
37
38
39
40
# File 'lib/candidhealth/commons/types/updates_disabled_due_to_external_system_integration_error_message.rb', line 36

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  message = struct["message"]
  new(message: message, additional_properties: struct)
end

.validate_raw(obj:) ⇒ Void

Leveraged for Union-type generation, validate_raw attempts to parse the given

hash and check each fields type against the current object's property
definitions.

Parameters:

  • obj (Object)

Returns:

  • (Void)


56
57
58
# File 'lib/candidhealth/commons/types/updates_disabled_due_to_external_system_integration_error_message.rb', line 56

def self.validate_raw(obj:)
  obj.message&.is_a?(String) != false || raise("Passed value for field obj.message is not the expected type, validation failed.")
end

Instance Method Details

#to_json(*_args) ⇒ String

Serialize an instance of

UpdatesDisabledDueToExternalSystemIntegrationErrorMessage to a JSON object

Returns:

  • (String)


46
47
48
# File 'lib/candidhealth/commons/types/updates_disabled_due_to_external_system_integration_error_message.rb', line 46

def to_json(*_args)
  @_field_set&.to_json
end