Class: CandidApiClient::Contracts::V2::Types::InsuranceTypes

Inherits:
Object
  • Object
show all
Defined in:
lib/candidhealth/contracts/v_2/types/insurance_types.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(member:, discriminant:) ⇒ CandidApiClient::Contracts::V2::Types::InsuranceTypes

Parameters:

  • member (Object)
  • discriminant (String)


22
23
24
25
# File 'lib/candidhealth/contracts/v_2/types/insurance_types.rb', line 22

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

Instance Attribute Details

#discriminantString (readonly)

Returns:

  • (String)


14
15
16
# File 'lib/candidhealth/contracts/v_2/types/insurance_types.rb', line 14

def discriminant
  @discriminant
end

#memberObject (readonly)

Returns:

  • (Object)


12
13
14
# File 'lib/candidhealth/contracts/v_2/types/insurance_types.rb', line 12

def member
  @member
end

Class Method Details

.all_applyCandidApiClient::Contracts::V2::Types::InsuranceTypes



91
92
93
# File 'lib/candidhealth/contracts/v_2/types/insurance_types.rb', line 91

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

.from_json(json_object:) ⇒ CandidApiClient::Contracts::V2::Types::InsuranceTypes

Deserialize a JSON object to an instance of InsuranceTypes

Parameters:

  • json_object (String)

Returns:



31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/candidhealth/contracts/v_2/types/insurance_types.rb', line 31

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

.none_applyCandidApiClient::Contracts::V2::Types::InsuranceTypes



96
97
98
# File 'lib/candidhealth/contracts/v_2/types/insurance_types.rb', line 96

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

.these_apply(member:) ⇒ CandidApiClient::Contracts::V2::Types::InsuranceTypes



102
103
104
# File 'lib/candidhealth/contracts/v_2/types/insurance_types.rb', line 102

def self.these_apply(member:)
  new(member: member, discriminant: "theseApply")
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)


69
70
71
72
73
74
75
76
77
78
79
80
# File 'lib/candidhealth/contracts/v_2/types/insurance_types.rb', line 69

def self.validate_raw(obj:)
  case obj.type
  when "allApply"
    # noop
  when "noneApply"
    # noop
  when "theseApply"
    obj.is_a?(Set) != 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)


86
87
88
# File 'lib/candidhealth/contracts/v_2/types/insurance_types.rb', line 86

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

#kind_of?Object



17
# File 'lib/candidhealth/contracts/v_2/types/insurance_types.rb', line 17

alias kind_of? is_a?

#to_json(*_args) ⇒ String

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

Returns:

  • (String)


49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/candidhealth/contracts/v_2/types/insurance_types.rb', line 49

def to_json(*_args)
  case @discriminant
  when "allApply"
    { type: @discriminant }.to_json
  when "noneApply"
    { type: @discriminant }.to_json
  when "theseApply"
    { "type": @discriminant, "value": @member }.to_json
  else
    { "type": @discriminant, value: @member }.to_json
  end
  @member.to_json
end