Class: CandidApiClient::NonInsurancePayers::V1::Types::NonInsurancePayerDescriptionUpdate

Inherits:
Object
  • Object
show all
Defined in:
lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_description_update.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(member:, discriminant:) ⇒ CandidApiClient::NonInsurancePayers::V1::Types::NonInsurancePayerDescriptionUpdate

Parameters:

  • member (Object)
  • discriminant (String)


21
22
23
24
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_description_update.rb', line 21

def initialize(member:, discriminant:)
  @member = member
  @discriminant = discriminant
end

Instance Attribute Details

#discriminantString (readonly)

Returns:

  • (String)


13
14
15
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_description_update.rb', line 13

def discriminant
  @discriminant
end

#memberObject (readonly)

Returns:

  • (Object)


11
12
13
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_description_update.rb', line 11

def member
  @member
end

Class Method Details

.from_json(json_object:) ⇒ CandidApiClient::NonInsurancePayers::V1::Types::NonInsurancePayerDescriptionUpdate

Deserialize a JSON object to an instance of NonInsurancePayerDescriptionUpdate



30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_description_update.rb', line 30

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  member = case struct.type
           when "remove"
             nil
           when "set"
             json_object.value
           else
             json_object
           end
  new(member: member, discriminant: struct.type)
end

.removeCandidApiClient::NonInsurancePayers::V1::Types::NonInsurancePayerDescriptionUpdate



84
85
86
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_description_update.rb', line 84

def self.remove
  new(member: nil, discriminant: "remove")
end

.set(member:) ⇒ CandidApiClient::NonInsurancePayers::V1::Types::NonInsurancePayerDescriptionUpdate



90
91
92
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_description_update.rb', line 90

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.

Parameters:

  • obj (Object)

Returns:

  • (Void)


64
65
66
67
68
69
70
71
72
73
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_description_update.rb', line 64

def self.validate_raw(obj:)
  case obj.type
  when "remove"
    # noop
  when "set"
    obj.is_a?(String) != false || raise("Passed value for field obj is not the expected type, validation failed.")
  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.

Parameters:

  • obj (Object)

Returns:

  • (Boolean)


79
80
81
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_description_update.rb', line 79

def is_a?(obj)
  @member.is_a?(obj)
end

#kind_of?Object



16
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_description_update.rb', line 16

alias kind_of? is_a?

#to_json(*_args) ⇒ String

For Union Types, to_json functionality is delegated to the wrapped member.

Returns:

  • (String)


46
47
48
49
50
51
52
53
54
55
56
# File 'lib/candidhealth/non_insurance_payers/v_1/types/non_insurance_payer_description_update.rb', line 46

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