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