Class: CandidApiClient::Era::Types::EraNotFullyProcessedErrorMessage
- Inherits:
-
Object
- Object
- CandidApiClient::Era::Types::EraNotFullyProcessedErrorMessage
- Defined in:
- lib/candidhealth/era/types/era_not_fully_processed_error_message.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
- #claim_id ⇒ String readonly
- #message ⇒ String readonly
Class Method Summary collapse
-
.from_json(json_object:) ⇒ CandidApiClient::Era::Types::EraNotFullyProcessedErrorMessage
Deserialize a JSON object to an instance of EraNotFullyProcessedErrorMessage.
-
.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(claim_id:, message:, additional_properties: nil) ⇒ CandidApiClient::Era::Types::EraNotFullyProcessedErrorMessage constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of EraNotFullyProcessedErrorMessage to a JSON object.
Constructor Details
#initialize(claim_id:, message:, additional_properties: nil) ⇒ CandidApiClient::Era::Types::EraNotFullyProcessedErrorMessage
26 27 28 29 30 31 |
# File 'lib/candidhealth/era/types/era_not_fully_processed_error_message.rb', line 26 def initialize(claim_id:, message:, additional_properties: nil) @claim_id = claim_id @message = @additional_properties = additional_properties @_field_set = { "claim_id": claim_id, "message": } end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
15 16 17 |
# File 'lib/candidhealth/era/types/era_not_fully_processed_error_message.rb', line 15 def additional_properties @additional_properties end |
#claim_id ⇒ String (readonly)
11 12 13 |
# File 'lib/candidhealth/era/types/era_not_fully_processed_error_message.rb', line 11 def claim_id @claim_id end |
#message ⇒ String (readonly)
13 14 15 |
# File 'lib/candidhealth/era/types/era_not_fully_processed_error_message.rb', line 13 def @message end |
Class Method Details
.from_json(json_object:) ⇒ CandidApiClient::Era::Types::EraNotFullyProcessedErrorMessage
Deserialize a JSON object to an instance of EraNotFullyProcessedErrorMessage
37 38 39 40 41 42 43 44 45 46 |
# File 'lib/candidhealth/era/types/era_not_fully_processed_error_message.rb', line 37 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) claim_id = struct["claim_id"] = struct["message"] new( claim_id: claim_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.
61 62 63 64 |
# File 'lib/candidhealth/era/types/era_not_fully_processed_error_message.rb', line 61 def self.validate_raw(obj:) obj.claim_id.is_a?(String) != false || raise("Passed value for field obj.claim_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 EraNotFullyProcessedErrorMessage to a JSON object
51 52 53 |
# File 'lib/candidhealth/era/types/era_not_fully_processed_error_message.rb', line 51 def to_json(*_args) @_field_set&.to_json end |