mailslurp_client 12.6.3 → 12.6.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e562ff8cfe082c2eac8d6052fdc69ccdb301bb59e39a28d37932d7bbabe4a75b
4
- data.tar.gz: fea82469b3485e4bb3537077ea4a3b1e933827a143debcb957e5ee293e8d2ab3
3
+ metadata.gz: bddde41f8ab29775db94ef1e31c3a37552769ad172df69f2fb44cf9b0f3ab4c2
4
+ data.tar.gz: 7463b34eb8741aad56a97d2b848462dc7a9017e0d205519a98309005b8a55dae
5
5
  SHA512:
6
- metadata.gz: a24726f59bed4793b9dedb35cfea04bfb42a6965929e7304381b84bb86ef6fbcdcc18d2d699e6b402ef1540c4464074486c003bfb916e7b1e2ddfec36d6047d2
7
- data.tar.gz: 13db91fdba52240f6ffe3f99f77a2d52031c702770d9611dc3a61a8392ae69b9b1fb721466fce06aeb6ea80235ae1f4cec285a1e1c5998a98c09833a1e0e8a2b
6
+ metadata.gz: e8190e5d71248099518777147806aaa29601e3c0990772c575df2246fed8408de2f9afc42202022956b1abd36144ea97325b3e493bc768d31e44b6b2ebab71c3
7
+ data.tar.gz: f39c090da88eabc415d311cbb43703f2e5806597c0e5e0e028d713e3d8aebb64cc46a8a3146dece6d90470d4ffed38e2a9338fd6dfae578f154444fe1c103dec
@@ -847,8 +847,8 @@ module MailSlurpClient
847
847
  return data, status_code, headers
848
848
  end
849
849
 
850
- # List Inboxes and email eddresses
851
- # List the inboxes you have created. Note use of the more advanced `getAllEmails` is recommended. You can provide a limit and sort parameter.
850
+ # List Inboxes and email addresses
851
+ # List the inboxes you have created. Note use of the more advanced `getAllEmails` is recommended and allows paginated access using a limit and sort parameter.
852
852
  # @param [Hash] opts the optional parameters
853
853
  # @option opts [Integer] :size Optional result size limit. Note an automatic limit of 100 results is applied. See the paginated `getAllEmails` for larger queries. (default to 100)
854
854
  # @option opts [String] :sort Optional createdAt sort direction ASC or DESC (default to 'ASC')
@@ -858,8 +858,8 @@ module MailSlurpClient
858
858
  data
859
859
  end
860
860
 
861
- # List Inboxes and email eddresses
862
- # List the inboxes you have created. Note use of the more advanced `getAllEmails` is recommended. You can provide a limit and sort parameter.
861
+ # List Inboxes and email addresses
862
+ # List the inboxes you have created. Note use of the more advanced `getAllEmails` is recommended and allows paginated access using a limit and sort parameter.
863
863
  # @param [Hash] opts the optional parameters
864
864
  # @option opts [Integer] :size Optional result size limit. Note an automatic limit of 100 results is applied. See the paginated `getAllEmails` for larger queries.
865
865
  # @option opts [String] :sort Optional createdAt sort direction ASC or DESC
@@ -26,6 +26,9 @@ module MailSlurpClient
26
26
  # The body of the email message
27
27
  attr_accessor :body
28
28
 
29
+ # An excerpt of the body of the email message
30
+ attr_accessor :body_excerpt
31
+
29
32
  # A hash signature of the email message
30
33
  attr_accessor :body_md5_hash
31
34
 
@@ -81,6 +84,7 @@ module MailSlurpClient
81
84
  :'attachments' => :'attachments',
82
85
  :'bcc' => :'bcc',
83
86
  :'body' => :'body',
87
+ :'body_excerpt' => :'bodyExcerpt',
84
88
  :'body_md5_hash' => :'bodyMD5Hash',
85
89
  :'cc' => :'cc',
86
90
  :'charset' => :'charset',
@@ -107,6 +111,7 @@ module MailSlurpClient
107
111
  :'attachments' => :'Array<String>',
108
112
  :'bcc' => :'Array<String>',
109
113
  :'body' => :'String',
114
+ :'body_excerpt' => :'String',
110
115
  :'body_md5_hash' => :'String',
111
116
  :'cc' => :'Array<String>',
112
117
  :'charset' => :'String',
@@ -167,6 +172,10 @@ module MailSlurpClient
167
172
  self.body = attributes[:'body']
168
173
  end
169
174
 
175
+ if attributes.key?(:'body_excerpt')
176
+ self.body_excerpt = attributes[:'body_excerpt']
177
+ end
178
+
170
179
  if attributes.key?(:'body_md5_hash')
171
180
  self.body_md5_hash = attributes[:'body_md5_hash']
172
181
  end
@@ -260,6 +269,7 @@ module MailSlurpClient
260
269
  attachments == o.attachments &&
261
270
  bcc == o.bcc &&
262
271
  body == o.body &&
272
+ body_excerpt == o.body_excerpt &&
263
273
  body_md5_hash == o.body_md5_hash &&
264
274
  cc == o.cc &&
265
275
  charset == o.charset &&
@@ -287,7 +297,7 @@ module MailSlurpClient
287
297
  # Calculates hash code according to all attributes.
288
298
  # @return [Integer] Hash code
289
299
  def hash
290
- [analysis, attachments, bcc, body, body_md5_hash, cc, charset, created_at, from, headers, id, inbox_id, is_html, read, reply_to, subject, team_access, to, updated_at, user_id].hash
300
+ [analysis, attachments, bcc, body, body_excerpt, body_md5_hash, cc, charset, created_at, from, headers, id, inbox_id, is_html, read, reply_to, subject, team_access, to, updated_at, user_id].hash
291
301
  end
292
302
 
293
303
  # Builds the object from hash
@@ -19,6 +19,8 @@ module MailSlurpClient
19
19
 
20
20
  attr_accessor :bcc
21
21
 
22
+ attr_accessor :body_excerpt
23
+
22
24
  attr_accessor :body_md5_hash
23
25
 
24
26
  attr_accessor :cc
@@ -44,6 +46,7 @@ module MailSlurpClient
44
46
  {
45
47
  :'attachments' => :'attachments',
46
48
  :'bcc' => :'bcc',
49
+ :'body_excerpt' => :'bodyExcerpt',
47
50
  :'body_md5_hash' => :'bodyMD5Hash',
48
51
  :'cc' => :'cc',
49
52
  :'created_at' => :'createdAt',
@@ -62,6 +65,7 @@ module MailSlurpClient
62
65
  {
63
66
  :'attachments' => :'Array<String>',
64
67
  :'bcc' => :'Array<String>',
68
+ :'body_excerpt' => :'String',
65
69
  :'body_md5_hash' => :'String',
66
70
  :'cc' => :'Array<String>',
67
71
  :'created_at' => :'DateTime',
@@ -108,6 +112,10 @@ module MailSlurpClient
108
112
  end
109
113
  end
110
114
 
115
+ if attributes.key?(:'body_excerpt')
116
+ self.body_excerpt = attributes[:'body_excerpt']
117
+ end
118
+
111
119
  if attributes.key?(:'body_md5_hash')
112
120
  self.body_md5_hash = attributes[:'body_md5_hash']
113
121
  end
@@ -193,6 +201,7 @@ module MailSlurpClient
193
201
  self.class == o.class &&
194
202
  attachments == o.attachments &&
195
203
  bcc == o.bcc &&
204
+ body_excerpt == o.body_excerpt &&
196
205
  body_md5_hash == o.body_md5_hash &&
197
206
  cc == o.cc &&
198
207
  created_at == o.created_at &&
@@ -214,7 +223,7 @@ module MailSlurpClient
214
223
  # Calculates hash code according to all attributes.
215
224
  # @return [Integer] Hash code
216
225
  def hash
217
- [attachments, bcc, body_md5_hash, cc, created_at, from, id, inbox_id, read, subject, team_access, to].hash
226
+ [attachments, bcc, body_excerpt, body_md5_hash, cc, created_at, from, id, inbox_id, read, subject, team_access, to].hash
218
227
  end
219
228
 
220
229
  # 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 = '12.6.3'
14
+ VERSION = '12.6.4'
15
15
  end
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: 12.6.3
4
+ version: 12.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - mailslurp
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-03 00:00:00.000000000 Z
11
+ date: 2021-07-05 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.