mailslurp_client 15.13.9 → 15.13.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/lib/mailslurp_client/api/api_user_controller_api.rb +23 -58
  3. data/lib/mailslurp_client/api/email_controller_api.rb +7 -10
  4. data/lib/mailslurp_client/api/inbox_controller_api.rb +2 -2
  5. data/lib/mailslurp_client/api/webhook_controller_api.rb +108 -0
  6. data/lib/mailslurp_client/models/alias_projection.rb +27 -27
  7. data/lib/mailslurp_client/models/attachment_projection.rb +14 -14
  8. data/lib/mailslurp_client/models/bounce_projection.rb +13 -13
  9. data/lib/mailslurp_client/models/bounce_recipient_projection.rb +13 -13
  10. data/lib/mailslurp_client/models/email_projection.rb +10 -10
  11. data/lib/mailslurp_client/models/page_alias.rb +22 -22
  12. data/lib/mailslurp_client/models/page_attachment_entity.rb +22 -22
  13. data/lib/mailslurp_client/models/page_bounced_email.rb +22 -22
  14. data/lib/mailslurp_client/models/page_bounced_recipients.rb +22 -22
  15. data/lib/mailslurp_client/models/page_complaint.rb +22 -22
  16. data/lib/mailslurp_client/models/page_contact_projection.rb +22 -22
  17. data/lib/mailslurp_client/models/page_delivery_status.rb +22 -22
  18. data/lib/mailslurp_client/models/page_email_preview.rb +22 -22
  19. data/lib/mailslurp_client/models/page_email_projection.rb +22 -22
  20. data/lib/mailslurp_client/models/page_email_validation_request.rb +22 -22
  21. data/lib/mailslurp_client/models/page_expired_inbox_record_projection.rb +22 -22
  22. data/lib/mailslurp_client/models/page_group_projection.rb +22 -22
  23. data/lib/mailslurp_client/models/page_inbox_forwarder_dto.rb +22 -22
  24. data/lib/mailslurp_client/models/page_inbox_projection.rb +22 -22
  25. data/lib/mailslurp_client/models/page_inbox_ruleset_dto.rb +22 -22
  26. data/lib/mailslurp_client/models/page_missed_email_projection.rb +22 -22
  27. data/lib/mailslurp_client/models/page_organization_inbox_projection.rb +22 -22
  28. data/lib/mailslurp_client/models/page_phone_number_projection.rb +22 -22
  29. data/lib/mailslurp_client/models/page_sent_email_projection.rb +16 -16
  30. data/lib/mailslurp_client/models/page_sent_email_with_queue_projection.rb +16 -16
  31. data/lib/mailslurp_client/models/page_sms_projection.rb +22 -22
  32. data/lib/mailslurp_client/models/page_template_projection.rb +22 -22
  33. data/lib/mailslurp_client/models/page_thread_projection.rb +22 -22
  34. data/lib/mailslurp_client/models/page_tracking_pixel_projection.rb +22 -22
  35. data/lib/mailslurp_client/models/page_unknown_missed_email_projection.rb +22 -22
  36. data/lib/mailslurp_client/models/page_webhook_projection.rb +22 -22
  37. data/lib/mailslurp_client/models/page_webhook_result.rb +22 -22
  38. data/lib/mailslurp_client/models/phone_number_projection.rb +19 -19
  39. data/lib/mailslurp_client/models/sent_email_projection.rb +15 -15
  40. data/lib/mailslurp_client/models/sort.rb +13 -13
  41. data/lib/mailslurp_client/models/template_projection.rb +15 -15
  42. data/lib/mailslurp_client/models/thread_projection.rb +16 -16
  43. data/lib/mailslurp_client/models/tracking_pixel_projection.rb +10 -10
  44. data/lib/mailslurp_client/models/webhook_delivery_status_payload.rb +429 -0
  45. data/lib/mailslurp_client/models/webhook_new_sms_payload.rb +393 -0
  46. data/lib/mailslurp_client/version.rb +1 -1
  47. data/lib/mailslurp_client.rb +2 -0
  48. metadata +4 -2
@@ -17,6 +17,8 @@ module MailSlurpClient
17
17
  class BounceRecipientProjection
18
18
  attr_accessor :id
19
19
 
20
+ attr_accessor :action
21
+
20
22
  attr_accessor :status
21
23
 
22
24
  attr_accessor :sent_email_id
@@ -25,17 +27,15 @@ module MailSlurpClient
25
27
 
26
28
  attr_accessor :recipient
27
29
 
28
- attr_accessor :action
29
-
30
30
  # Attribute mapping from ruby-style variable name to JSON key.
31
31
  def self.attribute_map
32
32
  {
33
33
  :'id' => :'id',
34
+ :'action' => :'action',
34
35
  :'status' => :'status',
35
36
  :'sent_email_id' => :'sentEmailId',
36
37
  :'created_at' => :'createdAt',
37
- :'recipient' => :'recipient',
38
- :'action' => :'action'
38
+ :'recipient' => :'recipient'
39
39
  }
40
40
  end
41
41
 
@@ -43,11 +43,11 @@ module MailSlurpClient
43
43
  def self.openapi_types
44
44
  {
45
45
  :'id' => :'String',
46
+ :'action' => :'String',
46
47
  :'status' => :'String',
47
48
  :'sent_email_id' => :'String',
48
49
  :'created_at' => :'DateTime',
49
- :'recipient' => :'String',
50
- :'action' => :'String'
50
+ :'recipient' => :'String'
51
51
  }
52
52
  end
53
53
 
@@ -76,6 +76,10 @@ module MailSlurpClient
76
76
  self.id = attributes[:'id']
77
77
  end
78
78
 
79
+ if attributes.key?(:'action')
80
+ self.action = attributes[:'action']
81
+ end
82
+
79
83
  if attributes.key?(:'status')
80
84
  self.status = attributes[:'status']
81
85
  end
@@ -91,10 +95,6 @@ module MailSlurpClient
91
95
  if attributes.key?(:'recipient')
92
96
  self.recipient = attributes[:'recipient']
93
97
  end
94
-
95
- if attributes.key?(:'action')
96
- self.action = attributes[:'action']
97
- end
98
98
  end
99
99
 
100
100
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -126,11 +126,11 @@ module MailSlurpClient
126
126
  return true if self.equal?(o)
127
127
  self.class == o.class &&
128
128
  id == o.id &&
129
+ action == o.action &&
129
130
  status == o.status &&
130
131
  sent_email_id == o.sent_email_id &&
131
132
  created_at == o.created_at &&
132
- recipient == o.recipient &&
133
- action == o.action
133
+ recipient == o.recipient
134
134
  end
135
135
 
136
136
  # @see the `==` method
@@ -142,7 +142,7 @@ module MailSlurpClient
142
142
  # Calculates hash code according to all attributes.
143
143
  # @return [Integer] Hash code
144
144
  def hash
145
- [id, status, sent_email_id, created_at, recipient, action].hash
145
+ [id, action, status, sent_email_id, created_at, recipient].hash
146
146
  end
147
147
 
148
148
  # Builds the object from hash
@@ -21,10 +21,10 @@ module MailSlurpClient
21
21
 
22
22
  attr_accessor :subject
23
23
 
24
- attr_accessor :inbox_id
25
-
26
24
  attr_accessor :attachments
27
25
 
26
+ attr_accessor :inbox_id
27
+
28
28
  attr_accessor :to
29
29
 
30
30
  attr_accessor :bcc
@@ -49,8 +49,8 @@ module MailSlurpClient
49
49
  :'id' => :'id',
50
50
  :'from' => :'from',
51
51
  :'subject' => :'subject',
52
- :'inbox_id' => :'inboxId',
53
52
  :'attachments' => :'attachments',
53
+ :'inbox_id' => :'inboxId',
54
54
  :'to' => :'to',
55
55
  :'bcc' => :'bcc',
56
56
  :'cc' => :'cc',
@@ -69,8 +69,8 @@ module MailSlurpClient
69
69
  :'id' => :'String',
70
70
  :'from' => :'String',
71
71
  :'subject' => :'String',
72
- :'inbox_id' => :'String',
73
72
  :'attachments' => :'Array<String>',
73
+ :'inbox_id' => :'String',
74
74
  :'to' => :'Array<String>',
75
75
  :'bcc' => :'Array<String>',
76
76
  :'cc' => :'Array<String>',
@@ -116,16 +116,16 @@ module MailSlurpClient
116
116
  self.subject = attributes[:'subject']
117
117
  end
118
118
 
119
- if attributes.key?(:'inbox_id')
120
- self.inbox_id = attributes[:'inbox_id']
121
- end
122
-
123
119
  if attributes.key?(:'attachments')
124
120
  if (value = attributes[:'attachments']).is_a?(Array)
125
121
  self.attachments = value
126
122
  end
127
123
  end
128
124
 
125
+ if attributes.key?(:'inbox_id')
126
+ self.inbox_id = attributes[:'inbox_id']
127
+ end
128
+
129
129
  if attributes.key?(:'to')
130
130
  if (value = attributes[:'to']).is_a?(Array)
131
131
  self.to = value
@@ -220,8 +220,8 @@ module MailSlurpClient
220
220
  id == o.id &&
221
221
  from == o.from &&
222
222
  subject == o.subject &&
223
- inbox_id == o.inbox_id &&
224
223
  attachments == o.attachments &&
224
+ inbox_id == o.inbox_id &&
225
225
  to == o.to &&
226
226
  bcc == o.bcc &&
227
227
  cc == o.cc &&
@@ -242,7 +242,7 @@ module MailSlurpClient
242
242
  # Calculates hash code according to all attributes.
243
243
  # @return [Integer] Hash code
244
244
  def hash
245
- [id, from, subject, inbox_id, attachments, to, bcc, cc, created_at, domain_id, read, team_access, body_md5_hash, body_excerpt].hash
245
+ [id, from, subject, attachments, inbox_id, to, bcc, cc, created_at, domain_id, read, team_access, body_md5_hash, body_excerpt].hash
246
246
  end
247
247
 
248
248
  # Builds the object from hash
@@ -21,11 +21,11 @@ module MailSlurpClient
21
21
 
22
22
  attr_accessor :total
23
23
 
24
- attr_accessor :total_pages
24
+ attr_accessor :last
25
25
 
26
26
  attr_accessor :total_elements
27
27
 
28
- attr_accessor :last
28
+ attr_accessor :total_pages
29
29
 
30
30
  attr_accessor :size
31
31
 
@@ -33,10 +33,10 @@ module MailSlurpClient
33
33
 
34
34
  attr_accessor :sort
35
35
 
36
- attr_accessor :number_of_elements
37
-
38
36
  attr_accessor :first
39
37
 
38
+ attr_accessor :number_of_elements
39
+
40
40
  attr_accessor :empty
41
41
 
42
42
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -45,14 +45,14 @@ module MailSlurpClient
45
45
  :'content' => :'content',
46
46
  :'pageable' => :'pageable',
47
47
  :'total' => :'total',
48
- :'total_pages' => :'totalPages',
49
- :'total_elements' => :'totalElements',
50
48
  :'last' => :'last',
49
+ :'total_elements' => :'totalElements',
50
+ :'total_pages' => :'totalPages',
51
51
  :'size' => :'size',
52
52
  :'number' => :'number',
53
53
  :'sort' => :'sort',
54
- :'number_of_elements' => :'numberOfElements',
55
54
  :'first' => :'first',
55
+ :'number_of_elements' => :'numberOfElements',
56
56
  :'empty' => :'empty'
57
57
  }
58
58
  end
@@ -63,14 +63,14 @@ module MailSlurpClient
63
63
  :'content' => :'Array<AliasProjection>',
64
64
  :'pageable' => :'PageableObject',
65
65
  :'total' => :'Integer',
66
- :'total_pages' => :'Integer',
67
- :'total_elements' => :'Integer',
68
66
  :'last' => :'Boolean',
67
+ :'total_elements' => :'Integer',
68
+ :'total_pages' => :'Integer',
69
69
  :'size' => :'Integer',
70
70
  :'number' => :'Integer',
71
71
  :'sort' => :'Sort',
72
- :'number_of_elements' => :'Integer',
73
72
  :'first' => :'Boolean',
73
+ :'number_of_elements' => :'Integer',
74
74
  :'empty' => :'Boolean'
75
75
  }
76
76
  end
@@ -110,16 +110,16 @@ module MailSlurpClient
110
110
  self.total = attributes[:'total']
111
111
  end
112
112
 
113
- if attributes.key?(:'total_pages')
114
- self.total_pages = attributes[:'total_pages']
113
+ if attributes.key?(:'last')
114
+ self.last = attributes[:'last']
115
115
  end
116
116
 
117
117
  if attributes.key?(:'total_elements')
118
118
  self.total_elements = attributes[:'total_elements']
119
119
  end
120
120
 
121
- if attributes.key?(:'last')
122
- self.last = attributes[:'last']
121
+ if attributes.key?(:'total_pages')
122
+ self.total_pages = attributes[:'total_pages']
123
123
  end
124
124
 
125
125
  if attributes.key?(:'size')
@@ -134,14 +134,14 @@ module MailSlurpClient
134
134
  self.sort = attributes[:'sort']
135
135
  end
136
136
 
137
- if attributes.key?(:'number_of_elements')
138
- self.number_of_elements = attributes[:'number_of_elements']
139
- end
140
-
141
137
  if attributes.key?(:'first')
142
138
  self.first = attributes[:'first']
143
139
  end
144
140
 
141
+ if attributes.key?(:'number_of_elements')
142
+ self.number_of_elements = attributes[:'number_of_elements']
143
+ end
144
+
145
145
  if attributes.key?(:'empty')
146
146
  self.empty = attributes[:'empty']
147
147
  end
@@ -168,14 +168,14 @@ module MailSlurpClient
168
168
  content == o.content &&
169
169
  pageable == o.pageable &&
170
170
  total == o.total &&
171
- total_pages == o.total_pages &&
172
- total_elements == o.total_elements &&
173
171
  last == o.last &&
172
+ total_elements == o.total_elements &&
173
+ total_pages == o.total_pages &&
174
174
  size == o.size &&
175
175
  number == o.number &&
176
176
  sort == o.sort &&
177
- number_of_elements == o.number_of_elements &&
178
177
  first == o.first &&
178
+ number_of_elements == o.number_of_elements &&
179
179
  empty == o.empty
180
180
  end
181
181
 
@@ -188,7 +188,7 @@ module MailSlurpClient
188
188
  # Calculates hash code according to all attributes.
189
189
  # @return [Integer] Hash code
190
190
  def hash
191
- [content, pageable, total, total_pages, total_elements, last, size, number, sort, number_of_elements, first, empty].hash
191
+ [content, pageable, total, last, total_elements, total_pages, size, number, sort, first, number_of_elements, empty].hash
192
192
  end
193
193
 
194
194
  # Builds the object from hash
@@ -21,11 +21,11 @@ module MailSlurpClient
21
21
 
22
22
  attr_accessor :total
23
23
 
24
- attr_accessor :total_pages
24
+ attr_accessor :last
25
25
 
26
26
  attr_accessor :total_elements
27
27
 
28
- attr_accessor :last
28
+ attr_accessor :total_pages
29
29
 
30
30
  attr_accessor :size
31
31
 
@@ -33,10 +33,10 @@ module MailSlurpClient
33
33
 
34
34
  attr_accessor :sort
35
35
 
36
- attr_accessor :number_of_elements
37
-
38
36
  attr_accessor :first
39
37
 
38
+ attr_accessor :number_of_elements
39
+
40
40
  attr_accessor :empty
41
41
 
42
42
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -45,14 +45,14 @@ module MailSlurpClient
45
45
  :'content' => :'content',
46
46
  :'pageable' => :'pageable',
47
47
  :'total' => :'total',
48
- :'total_pages' => :'totalPages',
49
- :'total_elements' => :'totalElements',
50
48
  :'last' => :'last',
49
+ :'total_elements' => :'totalElements',
50
+ :'total_pages' => :'totalPages',
51
51
  :'size' => :'size',
52
52
  :'number' => :'number',
53
53
  :'sort' => :'sort',
54
- :'number_of_elements' => :'numberOfElements',
55
54
  :'first' => :'first',
55
+ :'number_of_elements' => :'numberOfElements',
56
56
  :'empty' => :'empty'
57
57
  }
58
58
  end
@@ -63,14 +63,14 @@ module MailSlurpClient
63
63
  :'content' => :'Array<AttachmentProjection>',
64
64
  :'pageable' => :'PageableObject',
65
65
  :'total' => :'Integer',
66
- :'total_pages' => :'Integer',
67
- :'total_elements' => :'Integer',
68
66
  :'last' => :'Boolean',
67
+ :'total_elements' => :'Integer',
68
+ :'total_pages' => :'Integer',
69
69
  :'size' => :'Integer',
70
70
  :'number' => :'Integer',
71
71
  :'sort' => :'Sort',
72
- :'number_of_elements' => :'Integer',
73
72
  :'first' => :'Boolean',
73
+ :'number_of_elements' => :'Integer',
74
74
  :'empty' => :'Boolean'
75
75
  }
76
76
  end
@@ -110,16 +110,16 @@ module MailSlurpClient
110
110
  self.total = attributes[:'total']
111
111
  end
112
112
 
113
- if attributes.key?(:'total_pages')
114
- self.total_pages = attributes[:'total_pages']
113
+ if attributes.key?(:'last')
114
+ self.last = attributes[:'last']
115
115
  end
116
116
 
117
117
  if attributes.key?(:'total_elements')
118
118
  self.total_elements = attributes[:'total_elements']
119
119
  end
120
120
 
121
- if attributes.key?(:'last')
122
- self.last = attributes[:'last']
121
+ if attributes.key?(:'total_pages')
122
+ self.total_pages = attributes[:'total_pages']
123
123
  end
124
124
 
125
125
  if attributes.key?(:'size')
@@ -134,14 +134,14 @@ module MailSlurpClient
134
134
  self.sort = attributes[:'sort']
135
135
  end
136
136
 
137
- if attributes.key?(:'number_of_elements')
138
- self.number_of_elements = attributes[:'number_of_elements']
139
- end
140
-
141
137
  if attributes.key?(:'first')
142
138
  self.first = attributes[:'first']
143
139
  end
144
140
 
141
+ if attributes.key?(:'number_of_elements')
142
+ self.number_of_elements = attributes[:'number_of_elements']
143
+ end
144
+
145
145
  if attributes.key?(:'empty')
146
146
  self.empty = attributes[:'empty']
147
147
  end
@@ -168,14 +168,14 @@ module MailSlurpClient
168
168
  content == o.content &&
169
169
  pageable == o.pageable &&
170
170
  total == o.total &&
171
- total_pages == o.total_pages &&
172
- total_elements == o.total_elements &&
173
171
  last == o.last &&
172
+ total_elements == o.total_elements &&
173
+ total_pages == o.total_pages &&
174
174
  size == o.size &&
175
175
  number == o.number &&
176
176
  sort == o.sort &&
177
- number_of_elements == o.number_of_elements &&
178
177
  first == o.first &&
178
+ number_of_elements == o.number_of_elements &&
179
179
  empty == o.empty
180
180
  end
181
181
 
@@ -188,7 +188,7 @@ module MailSlurpClient
188
188
  # Calculates hash code according to all attributes.
189
189
  # @return [Integer] Hash code
190
190
  def hash
191
- [content, pageable, total, total_pages, total_elements, last, size, number, sort, number_of_elements, first, empty].hash
191
+ [content, pageable, total, last, total_elements, total_pages, size, number, sort, first, number_of_elements, empty].hash
192
192
  end
193
193
 
194
194
  # Builds the object from hash
@@ -21,11 +21,11 @@ module MailSlurpClient
21
21
 
22
22
  attr_accessor :total
23
23
 
24
- attr_accessor :total_pages
24
+ attr_accessor :last
25
25
 
26
26
  attr_accessor :total_elements
27
27
 
28
- attr_accessor :last
28
+ attr_accessor :total_pages
29
29
 
30
30
  attr_accessor :size
31
31
 
@@ -33,10 +33,10 @@ module MailSlurpClient
33
33
 
34
34
  attr_accessor :sort
35
35
 
36
- attr_accessor :number_of_elements
37
-
38
36
  attr_accessor :first
39
37
 
38
+ attr_accessor :number_of_elements
39
+
40
40
  attr_accessor :empty
41
41
 
42
42
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -45,14 +45,14 @@ module MailSlurpClient
45
45
  :'content' => :'content',
46
46
  :'pageable' => :'pageable',
47
47
  :'total' => :'total',
48
- :'total_pages' => :'totalPages',
49
- :'total_elements' => :'totalElements',
50
48
  :'last' => :'last',
49
+ :'total_elements' => :'totalElements',
50
+ :'total_pages' => :'totalPages',
51
51
  :'size' => :'size',
52
52
  :'number' => :'number',
53
53
  :'sort' => :'sort',
54
- :'number_of_elements' => :'numberOfElements',
55
54
  :'first' => :'first',
55
+ :'number_of_elements' => :'numberOfElements',
56
56
  :'empty' => :'empty'
57
57
  }
58
58
  end
@@ -63,14 +63,14 @@ module MailSlurpClient
63
63
  :'content' => :'Array<BounceProjection>',
64
64
  :'pageable' => :'PageableObject',
65
65
  :'total' => :'Integer',
66
- :'total_pages' => :'Integer',
67
- :'total_elements' => :'Integer',
68
66
  :'last' => :'Boolean',
67
+ :'total_elements' => :'Integer',
68
+ :'total_pages' => :'Integer',
69
69
  :'size' => :'Integer',
70
70
  :'number' => :'Integer',
71
71
  :'sort' => :'Sort',
72
- :'number_of_elements' => :'Integer',
73
72
  :'first' => :'Boolean',
73
+ :'number_of_elements' => :'Integer',
74
74
  :'empty' => :'Boolean'
75
75
  }
76
76
  end
@@ -110,16 +110,16 @@ module MailSlurpClient
110
110
  self.total = attributes[:'total']
111
111
  end
112
112
 
113
- if attributes.key?(:'total_pages')
114
- self.total_pages = attributes[:'total_pages']
113
+ if attributes.key?(:'last')
114
+ self.last = attributes[:'last']
115
115
  end
116
116
 
117
117
  if attributes.key?(:'total_elements')
118
118
  self.total_elements = attributes[:'total_elements']
119
119
  end
120
120
 
121
- if attributes.key?(:'last')
122
- self.last = attributes[:'last']
121
+ if attributes.key?(:'total_pages')
122
+ self.total_pages = attributes[:'total_pages']
123
123
  end
124
124
 
125
125
  if attributes.key?(:'size')
@@ -134,14 +134,14 @@ module MailSlurpClient
134
134
  self.sort = attributes[:'sort']
135
135
  end
136
136
 
137
- if attributes.key?(:'number_of_elements')
138
- self.number_of_elements = attributes[:'number_of_elements']
139
- end
140
-
141
137
  if attributes.key?(:'first')
142
138
  self.first = attributes[:'first']
143
139
  end
144
140
 
141
+ if attributes.key?(:'number_of_elements')
142
+ self.number_of_elements = attributes[:'number_of_elements']
143
+ end
144
+
145
145
  if attributes.key?(:'empty')
146
146
  self.empty = attributes[:'empty']
147
147
  end
@@ -168,14 +168,14 @@ module MailSlurpClient
168
168
  content == o.content &&
169
169
  pageable == o.pageable &&
170
170
  total == o.total &&
171
- total_pages == o.total_pages &&
172
- total_elements == o.total_elements &&
173
171
  last == o.last &&
172
+ total_elements == o.total_elements &&
173
+ total_pages == o.total_pages &&
174
174
  size == o.size &&
175
175
  number == o.number &&
176
176
  sort == o.sort &&
177
- number_of_elements == o.number_of_elements &&
178
177
  first == o.first &&
178
+ number_of_elements == o.number_of_elements &&
179
179
  empty == o.empty
180
180
  end
181
181
 
@@ -188,7 +188,7 @@ module MailSlurpClient
188
188
  # Calculates hash code according to all attributes.
189
189
  # @return [Integer] Hash code
190
190
  def hash
191
- [content, pageable, total, total_pages, total_elements, last, size, number, sort, number_of_elements, first, empty].hash
191
+ [content, pageable, total, last, total_elements, total_pages, size, number, sort, first, number_of_elements, empty].hash
192
192
  end
193
193
 
194
194
  # Builds the object from hash
@@ -21,11 +21,11 @@ module MailSlurpClient
21
21
 
22
22
  attr_accessor :total
23
23
 
24
- attr_accessor :total_pages
24
+ attr_accessor :last
25
25
 
26
26
  attr_accessor :total_elements
27
27
 
28
- attr_accessor :last
28
+ attr_accessor :total_pages
29
29
 
30
30
  attr_accessor :size
31
31
 
@@ -33,10 +33,10 @@ module MailSlurpClient
33
33
 
34
34
  attr_accessor :sort
35
35
 
36
- attr_accessor :number_of_elements
37
-
38
36
  attr_accessor :first
39
37
 
38
+ attr_accessor :number_of_elements
39
+
40
40
  attr_accessor :empty
41
41
 
42
42
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -45,14 +45,14 @@ module MailSlurpClient
45
45
  :'content' => :'content',
46
46
  :'pageable' => :'pageable',
47
47
  :'total' => :'total',
48
- :'total_pages' => :'totalPages',
49
- :'total_elements' => :'totalElements',
50
48
  :'last' => :'last',
49
+ :'total_elements' => :'totalElements',
50
+ :'total_pages' => :'totalPages',
51
51
  :'size' => :'size',
52
52
  :'number' => :'number',
53
53
  :'sort' => :'sort',
54
- :'number_of_elements' => :'numberOfElements',
55
54
  :'first' => :'first',
55
+ :'number_of_elements' => :'numberOfElements',
56
56
  :'empty' => :'empty'
57
57
  }
58
58
  end
@@ -63,14 +63,14 @@ module MailSlurpClient
63
63
  :'content' => :'Array<BounceRecipientProjection>',
64
64
  :'pageable' => :'PageableObject',
65
65
  :'total' => :'Integer',
66
- :'total_pages' => :'Integer',
67
- :'total_elements' => :'Integer',
68
66
  :'last' => :'Boolean',
67
+ :'total_elements' => :'Integer',
68
+ :'total_pages' => :'Integer',
69
69
  :'size' => :'Integer',
70
70
  :'number' => :'Integer',
71
71
  :'sort' => :'Sort',
72
- :'number_of_elements' => :'Integer',
73
72
  :'first' => :'Boolean',
73
+ :'number_of_elements' => :'Integer',
74
74
  :'empty' => :'Boolean'
75
75
  }
76
76
  end
@@ -110,16 +110,16 @@ module MailSlurpClient
110
110
  self.total = attributes[:'total']
111
111
  end
112
112
 
113
- if attributes.key?(:'total_pages')
114
- self.total_pages = attributes[:'total_pages']
113
+ if attributes.key?(:'last')
114
+ self.last = attributes[:'last']
115
115
  end
116
116
 
117
117
  if attributes.key?(:'total_elements')
118
118
  self.total_elements = attributes[:'total_elements']
119
119
  end
120
120
 
121
- if attributes.key?(:'last')
122
- self.last = attributes[:'last']
121
+ if attributes.key?(:'total_pages')
122
+ self.total_pages = attributes[:'total_pages']
123
123
  end
124
124
 
125
125
  if attributes.key?(:'size')
@@ -134,14 +134,14 @@ module MailSlurpClient
134
134
  self.sort = attributes[:'sort']
135
135
  end
136
136
 
137
- if attributes.key?(:'number_of_elements')
138
- self.number_of_elements = attributes[:'number_of_elements']
139
- end
140
-
141
137
  if attributes.key?(:'first')
142
138
  self.first = attributes[:'first']
143
139
  end
144
140
 
141
+ if attributes.key?(:'number_of_elements')
142
+ self.number_of_elements = attributes[:'number_of_elements']
143
+ end
144
+
145
145
  if attributes.key?(:'empty')
146
146
  self.empty = attributes[:'empty']
147
147
  end
@@ -168,14 +168,14 @@ module MailSlurpClient
168
168
  content == o.content &&
169
169
  pageable == o.pageable &&
170
170
  total == o.total &&
171
- total_pages == o.total_pages &&
172
- total_elements == o.total_elements &&
173
171
  last == o.last &&
172
+ total_elements == o.total_elements &&
173
+ total_pages == o.total_pages &&
174
174
  size == o.size &&
175
175
  number == o.number &&
176
176
  sort == o.sort &&
177
- number_of_elements == o.number_of_elements &&
178
177
  first == o.first &&
178
+ number_of_elements == o.number_of_elements &&
179
179
  empty == o.empty
180
180
  end
181
181
 
@@ -188,7 +188,7 @@ module MailSlurpClient
188
188
  # Calculates hash code according to all attributes.
189
189
  # @return [Integer] Hash code
190
190
  def hash
191
- [content, pageable, total, total_pages, total_elements, last, size, number, sort, number_of_elements, first, empty].hash
191
+ [content, pageable, total, last, total_elements, total_pages, size, number, sort, first, number_of_elements, empty].hash
192
192
  end
193
193
 
194
194
  # Builds the object from hash