Class: CandidApiClient::ServiceLines::V2::Types::TestResultOptional

Inherits:
Object
  • Object
show all
Defined in:
lib/candidhealth/service_lines/v_2/types/test_result_optional.rb

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value: OMIT, result_type: OMIT, additional_properties: nil) ⇒ CandidApiClient::ServiceLines::V2::Types::TestResultOptional

Parameters:



28
29
30
31
32
33
34
35
# File 'lib/candidhealth/service_lines/v_2/types/test_result_optional.rb', line 28

def initialize(value: OMIT, result_type: OMIT, additional_properties: nil)
  @value = value if value != OMIT
  @result_type = result_type if result_type != OMIT
  @additional_properties = additional_properties
  @_field_set = { "value": value, "result_type": result_type }.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



17
18
19
# File 'lib/candidhealth/service_lines/v_2/types/test_result_optional.rb', line 17

def additional_properties
  @additional_properties
end

#result_typeCandidApiClient::ServiceLines::V2::Types::TestResultType (readonly)



15
16
17
# File 'lib/candidhealth/service_lines/v_2/types/test_result_optional.rb', line 15

def result_type
  @result_type
end

#valueFloat (readonly)

Returns:

  • (Float)


13
14
15
# File 'lib/candidhealth/service_lines/v_2/types/test_result_optional.rb', line 13

def value
  @value
end

Class Method Details

.from_json(json_object:) ⇒ CandidApiClient::ServiceLines::V2::Types::TestResultOptional

Deserialize a JSON object to an instance of TestResultOptional

Parameters:

  • json_object (String)

Returns:



41
42
43
44
45
46
47
48
49
50
# File 'lib/candidhealth/service_lines/v_2/types/test_result_optional.rb', line 41

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  value = struct["value"]
  result_type = struct["result_type"]
  new(
    value: value,
    result_type: result_type,
    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)


65
66
67
68
# File 'lib/candidhealth/service_lines/v_2/types/test_result_optional.rb', line 65

def self.validate_raw(obj:)
  obj.value&.is_a?(Float) != false || raise("Passed value for field obj.value is not the expected type, validation failed.")
  obj.result_type&.is_a?(CandidApiClient::ServiceLines::V2::Types::TestResultType) != false || raise("Passed value for field obj.result_type is not the expected type, validation failed.")
end

Instance Method Details

#to_json(*_args) ⇒ String

Serialize an instance of TestResultOptional to a JSON object

Returns:

  • (String)


55
56
57
# File 'lib/candidhealth/service_lines/v_2/types/test_result_optional.rb', line 55

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