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