Class: CandidApiClient::Individual::Types::SubscriberBaseOptional

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

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(patient_relationship_to_subscriber_code: OMIT, date_of_birth: OMIT, address: OMIT, first_name: OMIT, last_name: OMIT, gender: OMIT, additional_properties: nil) ⇒ CandidApiClient::Individual::Types::SubscriberBaseOptional

Parameters:



42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/candidhealth/individual/types/subscriber_base_optional.rb', line 42

def initialize(patient_relationship_to_subscriber_code: OMIT, date_of_birth: OMIT, address: OMIT,
               first_name: OMIT, last_name: OMIT, gender: OMIT, additional_properties: nil)
  if patient_relationship_to_subscriber_code != OMIT
    @patient_relationship_to_subscriber_code = patient_relationship_to_subscriber_code
  end
  @date_of_birth = date_of_birth if date_of_birth != OMIT
  @address = address if address != OMIT
  @first_name = first_name if first_name != OMIT
  @last_name = last_name if last_name != OMIT
  @gender = gender if gender != OMIT
  @additional_properties = additional_properties
  @_field_set = {
    "patient_relationship_to_subscriber_code": patient_relationship_to_subscriber_code,
    "date_of_birth": date_of_birth,
    "address": address,
    "first_name": first_name,
    "last_name": last_name,
    "gender": gender
  }.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



27
28
29
# File 'lib/candidhealth/individual/types/subscriber_base_optional.rb', line 27

def additional_properties
  @additional_properties
end

#addressCandidApiClient::Commons::Types::StreetAddressShortZipOptional (readonly)



19
20
21
# File 'lib/candidhealth/individual/types/subscriber_base_optional.rb', line 19

def address
  @address
end

#date_of_birthDate (readonly)

Returns:

  • (Date)


17
18
19
# File 'lib/candidhealth/individual/types/subscriber_base_optional.rb', line 17

def date_of_birth
  @date_of_birth
end

#first_nameString (readonly)

Returns:

  • (String)


21
22
23
# File 'lib/candidhealth/individual/types/subscriber_base_optional.rb', line 21

def first_name
  @first_name
end

#genderCandidApiClient::Individual::Types::Gender (readonly)



25
26
27
# File 'lib/candidhealth/individual/types/subscriber_base_optional.rb', line 25

def gender
  @gender
end

#last_nameString (readonly)

Returns:

  • (String)


23
24
25
# File 'lib/candidhealth/individual/types/subscriber_base_optional.rb', line 23

def last_name
  @last_name
end

#patient_relationship_to_subscriber_codeCandidApiClient::Commons::Types::PatientRelationshipToInsuredCodeAll (readonly)



15
16
17
# File 'lib/candidhealth/individual/types/subscriber_base_optional.rb', line 15

def patient_relationship_to_subscriber_code
  @patient_relationship_to_subscriber_code
end

Class Method Details

.from_json(json_object:) ⇒ CandidApiClient::Individual::Types::SubscriberBaseOptional

Deserialize a JSON object to an instance of SubscriberBaseOptional

Parameters:

  • json_object (String)

Returns:



69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/candidhealth/individual/types/subscriber_base_optional.rb', line 69

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  parsed_json = JSON.parse(json_object)
  patient_relationship_to_subscriber_code = struct["patient_relationship_to_subscriber_code"]
  date_of_birth = (Date.parse(parsed_json["date_of_birth"]) unless parsed_json["date_of_birth"].nil?)
  if parsed_json["address"].nil?
    address = nil
  else
    address = parsed_json["address"].to_json
    address = CandidApiClient::Commons::Types::StreetAddressShortZipOptional.from_json(json_object: address)
  end
  first_name = struct["first_name"]
  last_name = struct["last_name"]
  gender = struct["gender"]
  new(
    patient_relationship_to_subscriber_code: patient_relationship_to_subscriber_code,
    date_of_birth: date_of_birth,
    address: address,
    first_name: first_name,
    last_name: last_name,
    gender: gender,
    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)


107
108
109
110
111
112
113
114
# File 'lib/candidhealth/individual/types/subscriber_base_optional.rb', line 107

def self.validate_raw(obj:)
  obj.patient_relationship_to_subscriber_code&.is_a?(CandidApiClient::Commons::Types::PatientRelationshipToInsuredCodeAll) != false || raise("Passed value for field obj.patient_relationship_to_subscriber_code is not the expected type, validation failed.")
  obj.date_of_birth&.is_a?(Date) != false || raise("Passed value for field obj.date_of_birth is not the expected type, validation failed.")
  obj.address.nil? || CandidApiClient::Commons::Types::StreetAddressShortZipOptional.validate_raw(obj: obj.address)
  obj.first_name&.is_a?(String) != false || raise("Passed value for field obj.first_name is not the expected type, validation failed.")
  obj.last_name&.is_a?(String) != false || raise("Passed value for field obj.last_name is not the expected type, validation failed.")
  obj.gender&.is_a?(CandidApiClient::Individual::Types::Gender) != false || raise("Passed value for field obj.gender is not the expected type, validation failed.")
end

Instance Method Details

#to_json(*_args) ⇒ String

Serialize an instance of SubscriberBaseOptional to a JSON object

Returns:

  • (String)


97
98
99
# File 'lib/candidhealth/individual/types/subscriber_base_optional.rb', line 97

def to_json(*_args)
  @_field_set&.to_json
end