mailslurp_client 15.3.0 → 15.4.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/lib/mailslurp_client/api/inbox_controller_api.rb +190 -0
  3. data/lib/mailslurp_client/models/attachment_projection.rb +14 -14
  4. data/lib/mailslurp_client/models/email_projection.rb +12 -12
  5. data/lib/mailslurp_client/models/imap_smtp_access_details.rb +309 -0
  6. data/lib/mailslurp_client/models/inbox_by_email_address_result.rb +220 -0
  7. data/lib/mailslurp_client/models/inbox_id_item.rb +225 -0
  8. data/lib/mailslurp_client/models/inbox_ids_result.rb +1 -1
  9. data/lib/mailslurp_client/models/page_alias.rb +22 -22
  10. data/lib/mailslurp_client/models/page_attachment_entity.rb +22 -22
  11. data/lib/mailslurp_client/models/page_bounced_email.rb +22 -22
  12. data/lib/mailslurp_client/models/page_bounced_recipients.rb +22 -22
  13. data/lib/mailslurp_client/models/page_contact_projection.rb +22 -22
  14. data/lib/mailslurp_client/models/page_email_preview.rb +22 -22
  15. data/lib/mailslurp_client/models/page_email_projection.rb +22 -22
  16. data/lib/mailslurp_client/models/page_expired_inbox_record_projection.rb +22 -22
  17. data/lib/mailslurp_client/models/page_group_projection.rb +22 -22
  18. data/lib/mailslurp_client/models/page_inbox_forwarder_dto.rb +22 -22
  19. data/lib/mailslurp_client/models/page_inbox_projection.rb +22 -22
  20. data/lib/mailslurp_client/models/page_inbox_ruleset_dto.rb +22 -22
  21. data/lib/mailslurp_client/models/page_missed_email_projection.rb +22 -22
  22. data/lib/mailslurp_client/models/page_organization_inbox_projection.rb +22 -22
  23. data/lib/mailslurp_client/models/page_sent_email_projection.rb +16 -16
  24. data/lib/mailslurp_client/models/page_template_projection.rb +22 -22
  25. data/lib/mailslurp_client/models/page_thread_projection.rb +22 -22
  26. data/lib/mailslurp_client/models/page_tracking_pixel_projection.rb +22 -22
  27. data/lib/mailslurp_client/models/page_unknown_missed_email_projection.rb +22 -22
  28. data/lib/mailslurp_client/models/page_webhook_projection.rb +22 -22
  29. data/lib/mailslurp_client/models/page_webhook_result.rb +22 -22
  30. data/lib/mailslurp_client/models/send_smtp_envelope_options.rb +242 -0
  31. data/lib/mailslurp_client/models/sent_email_projection.rb +31 -31
  32. data/lib/mailslurp_client/models/sort.rb +13 -13
  33. data/lib/mailslurp_client/version.rb +1 -1
  34. data/lib/mailslurp_client.rb +4 -0
  35. metadata +6 -2
@@ -0,0 +1,242 @@
1
+ =begin
2
+ #MailSlurp API
3
+
4
+ #MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://www.mailslurp.com/docs/) - [Examples](https://github.com/mailslurp/examples) repository
5
+
6
+ The version of the OpenAPI document: 6.5.2
7
+ Contact: contact@mailslurp.dev
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module MailSlurpClient
16
+ # Options for the email envelope
17
+ class SendSMTPEnvelopeOptions
18
+ attr_accessor :rcpt_to
19
+
20
+ attr_accessor :mail_from
21
+
22
+ attr_accessor :data
23
+
24
+ # Attribute mapping from ruby-style variable name to JSON key.
25
+ def self.attribute_map
26
+ {
27
+ :'rcpt_to' => :'rcptTo',
28
+ :'mail_from' => :'mailFrom',
29
+ :'data' => :'data'
30
+ }
31
+ end
32
+
33
+ # Attribute type mapping.
34
+ def self.openapi_types
35
+ {
36
+ :'rcpt_to' => :'Array<String>',
37
+ :'mail_from' => :'String',
38
+ :'data' => :'String'
39
+ }
40
+ end
41
+
42
+ # List of attributes with nullable: true
43
+ def self.openapi_nullable
44
+ Set.new([
45
+ ])
46
+ end
47
+
48
+ # Initializes the object
49
+ # @param [Hash] attributes Model attributes in the form of hash
50
+ def initialize(attributes = {})
51
+ if (!attributes.is_a?(Hash))
52
+ fail ArgumentError, "The input argument (attributes) must be a hash in `MailSlurpClient::SendSMTPEnvelopeOptions` initialize method"
53
+ end
54
+
55
+ # check to see if the attribute exists and convert string to symbol for hash key
56
+ attributes = attributes.each_with_object({}) { |(k, v), h|
57
+ if (!self.class.attribute_map.key?(k.to_sym))
58
+ fail ArgumentError, "`#{k}` is not a valid attribute in `MailSlurpClient::SendSMTPEnvelopeOptions`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
59
+ end
60
+ h[k.to_sym] = v
61
+ }
62
+
63
+ if attributes.key?(:'rcpt_to')
64
+ if (value = attributes[:'rcpt_to']).is_a?(Array)
65
+ self.rcpt_to = value
66
+ end
67
+ end
68
+
69
+ if attributes.key?(:'mail_from')
70
+ self.mail_from = attributes[:'mail_from']
71
+ end
72
+
73
+ if attributes.key?(:'data')
74
+ self.data = attributes[:'data']
75
+ end
76
+ end
77
+
78
+ # Show invalid properties with the reasons. Usually used together with valid?
79
+ # @return Array for valid properties with the reasons
80
+ def list_invalid_properties
81
+ invalid_properties = Array.new
82
+ if @rcpt_to.nil?
83
+ invalid_properties.push('invalid value for "rcpt_to", rcpt_to cannot be nil.')
84
+ end
85
+
86
+ if @mail_from.nil?
87
+ invalid_properties.push('invalid value for "mail_from", mail_from cannot be nil.')
88
+ end
89
+
90
+ if @data.nil?
91
+ invalid_properties.push('invalid value for "data", data cannot be nil.')
92
+ end
93
+
94
+ invalid_properties
95
+ end
96
+
97
+ # Check to see if the all the properties in the model are valid
98
+ # @return true if the model is valid
99
+ def valid?
100
+ return false if @rcpt_to.nil?
101
+ return false if @mail_from.nil?
102
+ return false if @data.nil?
103
+ true
104
+ end
105
+
106
+ # Checks equality by comparing each attribute.
107
+ # @param [Object] Object to be compared
108
+ def ==(o)
109
+ return true if self.equal?(o)
110
+ self.class == o.class &&
111
+ rcpt_to == o.rcpt_to &&
112
+ mail_from == o.mail_from &&
113
+ data == o.data
114
+ end
115
+
116
+ # @see the `==` method
117
+ # @param [Object] Object to be compared
118
+ def eql?(o)
119
+ self == o
120
+ end
121
+
122
+ # Calculates hash code according to all attributes.
123
+ # @return [Integer] Hash code
124
+ def hash
125
+ [rcpt_to, mail_from, data].hash
126
+ end
127
+
128
+ # Builds the object from hash
129
+ # @param [Hash] attributes Model attributes in the form of hash
130
+ # @return [Object] Returns the model itself
131
+ def self.build_from_hash(attributes)
132
+ new.build_from_hash(attributes)
133
+ end
134
+
135
+ # Builds the object from hash
136
+ # @param [Hash] attributes Model attributes in the form of hash
137
+ # @return [Object] Returns the model itself
138
+ def build_from_hash(attributes)
139
+ return nil unless attributes.is_a?(Hash)
140
+ self.class.openapi_types.each_pair do |key, type|
141
+ if type =~ /\AArray<(.*)>/i
142
+ # check to ensure the input is an array given that the attribute
143
+ # is documented as an array but the input is not
144
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
145
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
146
+ end
147
+ elsif !attributes[self.class.attribute_map[key]].nil?
148
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
149
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
150
+ end
151
+
152
+ self
153
+ end
154
+
155
+ # Deserializes the data based on type
156
+ # @param string type Data type
157
+ # @param string value Value to be deserialized
158
+ # @return [Object] Deserialized data
159
+ def _deserialize(type, value)
160
+ case type.to_sym
161
+ when :DateTime
162
+ DateTime.parse(value)
163
+ when :Date
164
+ Date.parse(value)
165
+ when :String
166
+ value.to_s
167
+ when :Integer
168
+ value.to_i
169
+ when :Float
170
+ value.to_f
171
+ when :Boolean
172
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
173
+ true
174
+ else
175
+ false
176
+ end
177
+ when :Object
178
+ # generic object (usually a Hash), return directly
179
+ value
180
+ when /\AArray<(?<inner_type>.+)>\z/
181
+ inner_type = Regexp.last_match[:inner_type]
182
+ value.map { |v| _deserialize(inner_type, v) }
183
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
184
+ k_type = Regexp.last_match[:k_type]
185
+ v_type = Regexp.last_match[:v_type]
186
+ {}.tap do |hash|
187
+ value.each do |k, v|
188
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
189
+ end
190
+ end
191
+ else # model
192
+ MailSlurpClient.const_get(type).build_from_hash(value)
193
+ end
194
+ end
195
+
196
+ # Returns the string representation of the object
197
+ # @return [String] String presentation of the object
198
+ def to_s
199
+ to_hash.to_s
200
+ end
201
+
202
+ # to_body is an alias to to_hash (backward compatibility)
203
+ # @return [Hash] Returns the object in the form of hash
204
+ def to_body
205
+ to_hash
206
+ end
207
+
208
+ # Returns the object in the form of hash
209
+ # @return [Hash] Returns the object in the form of hash
210
+ def to_hash
211
+ hash = {}
212
+ self.class.attribute_map.each_pair do |attr, param|
213
+ value = self.send(attr)
214
+ if value.nil?
215
+ is_nullable = self.class.openapi_nullable.include?(attr)
216
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
217
+ end
218
+
219
+ hash[param] = _to_hash(value)
220
+ end
221
+ hash
222
+ end
223
+
224
+ # Outputs non-array value in the form of hash
225
+ # For object, use to_hash. Otherwise, just return the value
226
+ # @param [Object] value Any valid value
227
+ # @return [Hash] Returns the value in the form of hash
228
+ def _to_hash(value)
229
+ if value.is_a?(Array)
230
+ value.compact.map { |v| _to_hash(v) }
231
+ elsif value.is_a?(Hash)
232
+ {}.tap do |hash|
233
+ value.each { |k, v| hash[k] = _to_hash(v) }
234
+ end
235
+ elsif value.respond_to? :to_hash
236
+ value.to_hash
237
+ else
238
+ value
239
+ end
240
+ end
241
+ end
242
+ end
@@ -23,18 +23,18 @@ module MailSlurpClient
23
23
 
24
24
  attr_accessor :subject
25
25
 
26
- attr_accessor :created_at
27
-
28
26
  attr_accessor :inbox_id
29
27
 
30
- attr_accessor :to
31
-
32
28
  attr_accessor :attachments
33
29
 
30
+ attr_accessor :to
31
+
34
32
  attr_accessor :bcc
35
33
 
36
34
  attr_accessor :cc
37
35
 
36
+ attr_accessor :created_at
37
+
38
38
  attr_accessor :body_md5_hash
39
39
 
40
40
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -44,12 +44,12 @@ module MailSlurpClient
44
44
  :'from' => :'from',
45
45
  :'user_id' => :'userId',
46
46
  :'subject' => :'subject',
47
- :'created_at' => :'createdAt',
48
47
  :'inbox_id' => :'inboxId',
49
- :'to' => :'to',
50
48
  :'attachments' => :'attachments',
49
+ :'to' => :'to',
51
50
  :'bcc' => :'bcc',
52
51
  :'cc' => :'cc',
52
+ :'created_at' => :'createdAt',
53
53
  :'body_md5_hash' => :'bodyMD5Hash'
54
54
  }
55
55
  end
@@ -61,12 +61,12 @@ module MailSlurpClient
61
61
  :'from' => :'String',
62
62
  :'user_id' => :'String',
63
63
  :'subject' => :'String',
64
- :'created_at' => :'DateTime',
65
64
  :'inbox_id' => :'String',
66
- :'to' => :'Array<String>',
67
65
  :'attachments' => :'Array<String>',
66
+ :'to' => :'Array<String>',
68
67
  :'bcc' => :'Array<String>',
69
68
  :'cc' => :'Array<String>',
69
+ :'created_at' => :'DateTime',
70
70
  :'body_md5_hash' => :'String'
71
71
  }
72
72
  end
@@ -108,26 +108,22 @@ module MailSlurpClient
108
108
  self.subject = attributes[:'subject']
109
109
  end
110
110
 
111
- if attributes.key?(:'created_at')
112
- self.created_at = attributes[:'created_at']
113
- end
114
-
115
111
  if attributes.key?(:'inbox_id')
116
112
  self.inbox_id = attributes[:'inbox_id']
117
113
  end
118
114
 
119
- if attributes.key?(:'to')
120
- if (value = attributes[:'to']).is_a?(Array)
121
- self.to = value
122
- end
123
- end
124
-
125
115
  if attributes.key?(:'attachments')
126
116
  if (value = attributes[:'attachments']).is_a?(Array)
127
117
  self.attachments = value
128
118
  end
129
119
  end
130
120
 
121
+ if attributes.key?(:'to')
122
+ if (value = attributes[:'to']).is_a?(Array)
123
+ self.to = value
124
+ end
125
+ end
126
+
131
127
  if attributes.key?(:'bcc')
132
128
  if (value = attributes[:'bcc']).is_a?(Array)
133
129
  self.bcc = value
@@ -140,6 +136,10 @@ module MailSlurpClient
140
136
  end
141
137
  end
142
138
 
139
+ if attributes.key?(:'created_at')
140
+ self.created_at = attributes[:'created_at']
141
+ end
142
+
143
143
  if attributes.key?(:'body_md5_hash')
144
144
  self.body_md5_hash = attributes[:'body_md5_hash']
145
145
  end
@@ -157,22 +157,18 @@ module MailSlurpClient
157
157
  invalid_properties.push('invalid value for "user_id", user_id cannot be nil.')
158
158
  end
159
159
 
160
- if @created_at.nil?
161
- invalid_properties.push('invalid value for "created_at", created_at cannot be nil.')
162
- end
163
-
164
160
  if @inbox_id.nil?
165
161
  invalid_properties.push('invalid value for "inbox_id", inbox_id cannot be nil.')
166
162
  end
167
163
 
168
- if @to.nil?
169
- invalid_properties.push('invalid value for "to", to cannot be nil.')
170
- end
171
-
172
164
  if @attachments.nil?
173
165
  invalid_properties.push('invalid value for "attachments", attachments cannot be nil.')
174
166
  end
175
167
 
168
+ if @to.nil?
169
+ invalid_properties.push('invalid value for "to", to cannot be nil.')
170
+ end
171
+
176
172
  if @bcc.nil?
177
173
  invalid_properties.push('invalid value for "bcc", bcc cannot be nil.')
178
174
  end
@@ -181,6 +177,10 @@ module MailSlurpClient
181
177
  invalid_properties.push('invalid value for "cc", cc cannot be nil.')
182
178
  end
183
179
 
180
+ if @created_at.nil?
181
+ invalid_properties.push('invalid value for "created_at", created_at cannot be nil.')
182
+ end
183
+
184
184
  invalid_properties
185
185
  end
186
186
 
@@ -189,12 +189,12 @@ module MailSlurpClient
189
189
  def valid?
190
190
  return false if @id.nil?
191
191
  return false if @user_id.nil?
192
- return false if @created_at.nil?
193
192
  return false if @inbox_id.nil?
194
- return false if @to.nil?
195
193
  return false if @attachments.nil?
194
+ return false if @to.nil?
196
195
  return false if @bcc.nil?
197
196
  return false if @cc.nil?
197
+ return false if @created_at.nil?
198
198
  true
199
199
  end
200
200
 
@@ -207,12 +207,12 @@ module MailSlurpClient
207
207
  from == o.from &&
208
208
  user_id == o.user_id &&
209
209
  subject == o.subject &&
210
- created_at == o.created_at &&
211
210
  inbox_id == o.inbox_id &&
212
- to == o.to &&
213
211
  attachments == o.attachments &&
212
+ to == o.to &&
214
213
  bcc == o.bcc &&
215
214
  cc == o.cc &&
215
+ created_at == o.created_at &&
216
216
  body_md5_hash == o.body_md5_hash
217
217
  end
218
218
 
@@ -225,7 +225,7 @@ module MailSlurpClient
225
225
  # Calculates hash code according to all attributes.
226
226
  # @return [Integer] Hash code
227
227
  def hash
228
- [id, from, user_id, subject, created_at, inbox_id, to, attachments, bcc, cc, body_md5_hash].hash
228
+ [id, from, user_id, subject, inbox_id, attachments, to, bcc, cc, created_at, body_md5_hash].hash
229
229
  end
230
230
 
231
231
  # Builds the object from hash
@@ -16,16 +16,16 @@ module MailSlurpClient
16
16
  class Sort
17
17
  attr_accessor :empty
18
18
 
19
- attr_accessor :unsorted
20
-
21
19
  attr_accessor :sorted
22
20
 
21
+ attr_accessor :unsorted
22
+
23
23
  # Attribute mapping from ruby-style variable name to JSON key.
24
24
  def self.attribute_map
25
25
  {
26
26
  :'empty' => :'empty',
27
- :'unsorted' => :'unsorted',
28
- :'sorted' => :'sorted'
27
+ :'sorted' => :'sorted',
28
+ :'unsorted' => :'unsorted'
29
29
  }
30
30
  end
31
31
 
@@ -33,8 +33,8 @@ module MailSlurpClient
33
33
  def self.openapi_types
34
34
  {
35
35
  :'empty' => :'Boolean',
36
- :'unsorted' => :'Boolean',
37
- :'sorted' => :'Boolean'
36
+ :'sorted' => :'Boolean',
37
+ :'unsorted' => :'Boolean'
38
38
  }
39
39
  end
40
40
 
@@ -63,13 +63,13 @@ module MailSlurpClient
63
63
  self.empty = attributes[:'empty']
64
64
  end
65
65
 
66
- if attributes.key?(:'unsorted')
67
- self.unsorted = attributes[:'unsorted']
68
- end
69
-
70
66
  if attributes.key?(:'sorted')
71
67
  self.sorted = attributes[:'sorted']
72
68
  end
69
+
70
+ if attributes.key?(:'unsorted')
71
+ self.unsorted = attributes[:'unsorted']
72
+ end
73
73
  end
74
74
 
75
75
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -91,8 +91,8 @@ module MailSlurpClient
91
91
  return true if self.equal?(o)
92
92
  self.class == o.class &&
93
93
  empty == o.empty &&
94
- unsorted == o.unsorted &&
95
- sorted == o.sorted
94
+ sorted == o.sorted &&
95
+ unsorted == o.unsorted
96
96
  end
97
97
 
98
98
  # @see the `==` method
@@ -104,7 +104,7 @@ module MailSlurpClient
104
104
  # Calculates hash code according to all attributes.
105
105
  # @return [Integer] Hash code
106
106
  def hash
107
- [empty, unsorted, sorted].hash
107
+ [empty, sorted, unsorted].hash
108
108
  end
109
109
 
110
110
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module MailSlurpClient
14
- VERSION = '15.3.0'
14
+ VERSION = '15.4.2'
15
15
  end
@@ -75,11 +75,14 @@ require 'mailslurp_client/models/group_dto'
75
75
  require 'mailslurp_client/models/group_projection'
76
76
  require 'mailslurp_client/models/html_validation_result'
77
77
  require 'mailslurp_client/models/ip_address_result'
78
+ require 'mailslurp_client/models/imap_smtp_access_details'
79
+ require 'mailslurp_client/models/inbox_by_email_address_result'
78
80
  require 'mailslurp_client/models/inbox_dto'
79
81
  require 'mailslurp_client/models/inbox_exists_dto'
80
82
  require 'mailslurp_client/models/inbox_forwarder_dto'
81
83
  require 'mailslurp_client/models/inbox_forwarder_test_options'
82
84
  require 'mailslurp_client/models/inbox_forwarder_test_result'
85
+ require 'mailslurp_client/models/inbox_id_item'
83
86
  require 'mailslurp_client/models/inbox_ids_result'
84
87
  require 'mailslurp_client/models/inbox_preview'
85
88
  require 'mailslurp_client/models/inbox_ruleset_dto'
@@ -120,6 +123,7 @@ require 'mailslurp_client/models/recipient'
120
123
  require 'mailslurp_client/models/reply_to_alias_email_options'
121
124
  require 'mailslurp_client/models/reply_to_email_options'
122
125
  require 'mailslurp_client/models/send_email_options'
126
+ require 'mailslurp_client/models/send_smtp_envelope_options'
123
127
  require 'mailslurp_client/models/sender'
124
128
  require 'mailslurp_client/models/sent_email_dto'
125
129
  require 'mailslurp_client/models/sent_email_projection'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mailslurp_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 15.3.0
4
+ version: 15.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - mailslurp
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-17 00:00:00.000000000 Z
11
+ date: 2022-01-21 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Create emails addresses in Ruby then send and receive real emails and
14
14
  attachments. See https://www.mailslurp.com/docs/ruby/ for full Ruby documentation.
@@ -105,11 +105,14 @@ files:
105
105
  - lib/mailslurp_client/models/group_dto.rb
106
106
  - lib/mailslurp_client/models/group_projection.rb
107
107
  - lib/mailslurp_client/models/html_validation_result.rb
108
+ - lib/mailslurp_client/models/imap_smtp_access_details.rb
109
+ - lib/mailslurp_client/models/inbox_by_email_address_result.rb
108
110
  - lib/mailslurp_client/models/inbox_dto.rb
109
111
  - lib/mailslurp_client/models/inbox_exists_dto.rb
110
112
  - lib/mailslurp_client/models/inbox_forwarder_dto.rb
111
113
  - lib/mailslurp_client/models/inbox_forwarder_test_options.rb
112
114
  - lib/mailslurp_client/models/inbox_forwarder_test_result.rb
115
+ - lib/mailslurp_client/models/inbox_id_item.rb
113
116
  - lib/mailslurp_client/models/inbox_ids_result.rb
114
117
  - lib/mailslurp_client/models/inbox_preview.rb
115
118
  - lib/mailslurp_client/models/inbox_ruleset_dto.rb
@@ -151,6 +154,7 @@ files:
151
154
  - lib/mailslurp_client/models/reply_to_alias_email_options.rb
152
155
  - lib/mailslurp_client/models/reply_to_email_options.rb
153
156
  - lib/mailslurp_client/models/send_email_options.rb
157
+ - lib/mailslurp_client/models/send_smtp_envelope_options.rb
154
158
  - lib/mailslurp_client/models/sender.rb
155
159
  - lib/mailslurp_client/models/sent_email_dto.rb
156
160
  - lib/mailslurp_client/models/sent_email_projection.rb