Class: CandidApiClient::Diagnoses::Types::DiagnosisNotFoundError
- Inherits:
-
Object
- Object
- CandidApiClient::Diagnoses::Types::DiagnosisNotFoundError
- Defined in:
- lib/candidhealth/diagnoses/types/diagnosis_not_found_error.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
- #diagnosis_id ⇒ String readonly
- #message ⇒ String readonly
Class Method Summary collapse
-
.from_json(json_object:) ⇒ CandidApiClient::Diagnoses::Types::DiagnosisNotFoundError
Deserialize a JSON object to an instance of DiagnosisNotFoundError.
-
.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.
Instance Method Summary collapse
- #initialize(message:, diagnosis_id: OMIT, additional_properties: nil) ⇒ CandidApiClient::Diagnoses::Types::DiagnosisNotFoundError constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of DiagnosisNotFoundError to a JSON object.
Constructor Details
#initialize(message:, diagnosis_id: OMIT, additional_properties: nil) ⇒ CandidApiClient::Diagnoses::Types::DiagnosisNotFoundError
26 27 28 29 30 31 32 33 |
# File 'lib/candidhealth/diagnoses/types/diagnosis_not_found_error.rb', line 26 def initialize(message:, diagnosis_id: OMIT, additional_properties: nil) @diagnosis_id = diagnosis_id if diagnosis_id != OMIT @message = @additional_properties = additional_properties @_field_set = { "diagnosis_id": diagnosis_id, "message": }.reject do |_k, v| v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
15 16 17 |
# File 'lib/candidhealth/diagnoses/types/diagnosis_not_found_error.rb', line 15 def additional_properties @additional_properties end |
#diagnosis_id ⇒ String (readonly)
11 12 13 |
# File 'lib/candidhealth/diagnoses/types/diagnosis_not_found_error.rb', line 11 def diagnosis_id @diagnosis_id end |
#message ⇒ String (readonly)
13 14 15 |
# File 'lib/candidhealth/diagnoses/types/diagnosis_not_found_error.rb', line 13 def @message end |
Class Method Details
.from_json(json_object:) ⇒ CandidApiClient::Diagnoses::Types::DiagnosisNotFoundError
Deserialize a JSON object to an instance of DiagnosisNotFoundError
39 40 41 42 43 44 45 46 47 48 |
# File 'lib/candidhealth/diagnoses/types/diagnosis_not_found_error.rb', line 39 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) diagnosis_id = struct["diagnosis_id"] = struct["message"] new( diagnosis_id: diagnosis_id, 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.
63 64 65 66 |
# File 'lib/candidhealth/diagnoses/types/diagnosis_not_found_error.rb', line 63 def self.validate_raw(obj:) obj.diagnosis_id&.is_a?(String) != false || raise("Passed value for field obj.diagnosis_id is not the expected type, validation failed.") obj..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 DiagnosisNotFoundError to a JSON object
53 54 55 |
# File 'lib/candidhealth/diagnoses/types/diagnosis_not_found_error.rb', line 53 def to_json(*_args) @_field_set&.to_json end |