Class: CandidApiClient::Identifiers::Types::UpdatableIdentifier

Inherits:
Object
  • Object
show all
Defined in:
lib/candidhealth/identifiers/types/updatable_identifier.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(member:, discriminant:) ⇒ CandidApiClient::Identifiers::Types::UpdatableIdentifier

Parameters:

  • member (Object)
  • discriminant (String)


22
23
24
25
# File 'lib/candidhealth/identifiers/types/updatable_identifier.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/identifiers/types/updatable_identifier.rb', line 14

def discriminant
  @discriminant
end

#memberObject (readonly)

Returns:

  • (Object)


12
13
14
# File 'lib/candidhealth/identifiers/types/updatable_identifier.rb', line 12

def member
  @member
end

Class Method Details

.add(member:) ⇒ CandidApiClient::Identifiers::Types::UpdatableIdentifier



92
93
94
# File 'lib/candidhealth/identifiers/types/updatable_identifier.rb', line 92

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

.from_json(json_object:) ⇒ CandidApiClient::Identifiers::Types::UpdatableIdentifier

Deserialize a JSON object to an instance of UpdatableIdentifier

Parameters:

  • json_object (String)

Returns:



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

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  member = case struct.type
           when "add"
             CandidApiClient::Identifiers::Types::IdentifierCreate.from_json(json_object: json_object)
           when "update"
             CandidApiClient::Identifiers::Types::IdentifierUpdate.from_json(json_object: json_object)
           when "remove"
             json_object.value
           else
             CandidApiClient::Identifiers::Types::IdentifierCreate.from_json(json_object: json_object)
           end
  new(member: member, discriminant: struct.type)
end

.remove(member:) ⇒ CandidApiClient::Identifiers::Types::UpdatableIdentifier

Parameters:

  • member (String)

Returns:



104
105
106
# File 'lib/candidhealth/identifiers/types/updatable_identifier.rb', line 104

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

.update(member:) ⇒ CandidApiClient::Identifiers::Types::UpdatableIdentifier



98
99
100
# File 'lib/candidhealth/identifiers/types/updatable_identifier.rb', line 98

def self.update(member:)
  new(member: member, discriminant: "update")
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/identifiers/types/updatable_identifier.rb', line 69

def self.validate_raw(obj:)
  case obj.type
  when "add"
    CandidApiClient::Identifiers::Types::IdentifierCreate.validate_raw(obj: obj)
  when "update"
    CandidApiClient::Identifiers::Types::IdentifierUpdate.validate_raw(obj: obj)
  when "remove"
    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)


86
87
88
# File 'lib/candidhealth/identifiers/types/updatable_identifier.rb', line 86

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

#kind_of?Object



17
# File 'lib/candidhealth/identifiers/types/updatable_identifier.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/identifiers/types/updatable_identifier.rb', line 49

def to_json(*_args)
  case @discriminant
  when "add"
    { **@member.to_json, type: @discriminant }.to_json
  when "update"
    { **@member.to_json, type: @discriminant }.to_json
  when "remove"
    { "type": @discriminant, "value": @member }.to_json
  else
    { "type": @discriminant, value: @member }.to_json
  end
  @member.to_json
end