Class: Courier::Send::Recipient

Inherits:
Object
  • Object
show all
Defined in:
lib/trycourier/send/types/recipient.rb

Class Method Summary collapse

Class Method Details

.from_json(json_object:) ⇒ Send::Recipient

Deserialize a JSON object to an instance of Recipient

Parameters:

  • json_object (JSON)

Returns:



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/trycourier/send/types/recipient.rb', line 18

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  begin
    Send::AudienceRecipient.validate_raw(obj: struct)
    return Send::AudienceRecipient.from_json(json_object: json_object)
  rescue StandardError
    # noop
  end
  begin
    Send::ListRecipient.validate_raw(obj: struct)
    return Send::ListRecipient.from_json(json_object: json_object)
  rescue StandardError
    # noop
  end
  begin
    Send::ListPatternRecipient.validate_raw(obj: struct)
    return Send::ListPatternRecipient.from_json(json_object: json_object)
  rescue StandardError
    # noop
  end
  begin
    Send::UserRecipient.validate_raw(obj: struct)
    return Send::UserRecipient.from_json(json_object: json_object)
  rescue StandardError
    # noop
  end
  begin
    Send::SlackRecipient.validate_raw(obj: struct)
    return Send::SlackRecipient.from_json(json_object: json_object)
  rescue StandardError
    # noop
  end
  begin
    Send::MsTeamsRecipient.validate_raw(obj: struct)
    return Send::MsTeamsRecipient.from_json(json_object: json_object)
  rescue StandardError
    # noop
  end
  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)


63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# File 'lib/trycourier/send/types/recipient.rb', line 63

def self.validate_raw(obj:)
  begin
    return Send::AudienceRecipient.validate_raw(obj: obj)
  rescue StandardError
    # noop
  end
  begin
    return Send::ListRecipient.validate_raw(obj: obj)
  rescue StandardError
    # noop
  end
  begin
    return Send::ListPatternRecipient.validate_raw(obj: obj)
  rescue StandardError
    # noop
  end
  begin
    return Send::UserRecipient.validate_raw(obj: obj)
  rescue StandardError
    # noop
  end
  begin
    return Send::SlackRecipient.validate_raw(obj: obj)
  rescue StandardError
    # noop
  end
  begin
    return Send::MsTeamsRecipient.validate_raw(obj: obj)
  rescue StandardError
    # noop
  end
  raise("Passed value matched no type within the union, validation failed.")
end