Class: CandidApiClient::NonInsurancePayers::V1::Types::NonInsurancePayerAddressUpdate
- Inherits:
-
Object
- Object
- CandidApiClient::NonInsurancePayers::V1::Types::NonInsurancePayerAddressUpdate
- Defined in:
- lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_address_update.rb
Instance Attribute Summary collapse
- #discriminant ⇒ String readonly
- #member ⇒ Object readonly
Class Method Summary collapse
-
.from_json(json_object:) ⇒ CandidApiClient::NonInsurancePayers::V1::Types::NonInsurancePayerAddressUpdate
Deserialize a JSON object to an instance of NonInsurancePayerAddressUpdate.
- .remove ⇒ CandidApiClient::NonInsurancePayers::V1::Types::NonInsurancePayerAddressUpdate
- .set(member:) ⇒ CandidApiClient::NonInsurancePayers::V1::Types::NonInsurancePayerAddressUpdate
-
.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(member:, discriminant:) ⇒ CandidApiClient::NonInsurancePayers::V1::Types::NonInsurancePayerAddressUpdate constructor
-
#is_a?(obj) ⇒ Boolean
For Union Types, is_a? functionality is delegated to the wrapped member.
- #kind_of? ⇒ Object
-
#to_json(*_args) ⇒ String
For Union Types, to_json functionality is delegated to the wrapped member.
Constructor Details
#initialize(member:, discriminant:) ⇒ CandidApiClient::NonInsurancePayers::V1::Types::NonInsurancePayerAddressUpdate
22 23 24 25 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_address_update.rb', line 22 def initialize(member:, discriminant:) @member = member @discriminant = discriminant end |
Instance Attribute Details
#discriminant ⇒ String (readonly)
14 15 16 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_address_update.rb', line 14 def discriminant @discriminant end |
#member ⇒ Object (readonly)
12 13 14 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_address_update.rb', line 12 def member @member end |
Class Method Details
.from_json(json_object:) ⇒ CandidApiClient::NonInsurancePayers::V1::Types::NonInsurancePayerAddressUpdate
Deserialize a JSON object to an instance of NonInsurancePayerAddressUpdate
31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_address_update.rb', line 31 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) member = case struct.type when "remove" nil when "set" CandidApiClient::Commons::Types::StreetAddressShortZip.from_json(json_object: json_object.value) else json_object end new(member: member, discriminant: struct.type) end |
.remove ⇒ CandidApiClient::NonInsurancePayers::V1::Types::NonInsurancePayerAddressUpdate
85 86 87 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_address_update.rb', line 85 def self.remove new(member: nil, discriminant: "remove") end |
.set(member:) ⇒ CandidApiClient::NonInsurancePayers::V1::Types::NonInsurancePayerAddressUpdate
91 92 93 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_address_update.rb', line 91 def self.set(member:) new(member: member, discriminant: "set") 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.
65 66 67 68 69 70 71 72 73 74 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_address_update.rb', line 65 def self.validate_raw(obj:) case obj.type when "remove" # noop when "set" CandidApiClient::Commons::Types::StreetAddressShortZip.validate_raw(obj: obj) else raise("Passed value matched no type within the union, validation failed.") end end |
Instance Method Details
#is_a?(obj) ⇒ Boolean
For Union Types, is_a? functionality is delegated to the wrapped member.
80 81 82 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_address_update.rb', line 80 def is_a?(obj) @member.is_a?(obj) end |
#kind_of? ⇒ Object
17 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_address_update.rb', line 17 alias kind_of? is_a? |
#to_json(*_args) ⇒ String
For Union Types, to_json functionality is delegated to the wrapped member.
47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_address_update.rb', line 47 def to_json(*_args) case @discriminant when "remove" { type: @discriminant }.to_json when "set" { "type": @discriminant, "value": @member }.to_json else { "type": @discriminant, value: @member }.to_json end @member.to_json end |