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