Class: CandidApiClient::Individual::Types::PatientNonInsurancePayerInfoCreate

Inherits:
Object
  • Object
show all
Defined in:
lib/candidhealth/individual/types/patient_non_insurance_payer_info_create.rb

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(non_insurance_payer_id:, member_id: OMIT, additional_properties: nil) ⇒ CandidApiClient::Individual::Types::PatientNonInsurancePayerInfoCreate

Parameters:

  • non_insurance_payer_id (String)
  • member_id (String) (defaults to: OMIT)
  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



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_propertiesOpenStruct (readonly)

Returns Additional properties unmapped to the current class definition.

Returns:

  • (OpenStruct)

    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_idString (readonly)

Returns:

  • (String)


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_idString (readonly)

Returns:

  • (String)


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.

Parameters:

  • obj (Object)

Returns:

  • (Void)


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

Returns:

  • (String)


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