mailslurp_client 15.18.0 → 15.18.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (25) hide show
  1. checksums.yaml +4 -4
  2. data/lib/mailslurp_client/api/email_controller_api.rb +2 -2
  3. data/lib/mailslurp_client/models/alias_projection.rb +29 -29
  4. data/lib/mailslurp_client/models/attachment_projection.rb +29 -29
  5. data/lib/mailslurp_client/models/bounce_projection.rb +15 -15
  6. data/lib/mailslurp_client/models/bounce_recipient_projection.rb +22 -22
  7. data/lib/mailslurp_client/models/connector_projection.rb +15 -15
  8. data/lib/mailslurp_client/models/connector_sync_event_projection.rb +15 -15
  9. data/lib/mailslurp_client/models/contact_projection.rb +10 -10
  10. data/lib/mailslurp_client/models/email_projection.rb +15 -15
  11. data/lib/mailslurp_client/models/expired_inbox_record_projection.rb +15 -15
  12. data/lib/mailslurp_client/models/inbox_forwarder_event_projection.rb +10 -10
  13. data/lib/mailslurp_client/models/inbox_replier_event_projection.rb +20 -20
  14. data/lib/mailslurp_client/models/list_unsubscribe_recipient_projection.rb +15 -15
  15. data/lib/mailslurp_client/models/missed_email_projection.rb +10 -10
  16. data/lib/mailslurp_client/models/phone_number_projection.rb +15 -15
  17. data/lib/mailslurp_client/models/sent_email_projection.rb +38 -38
  18. data/lib/mailslurp_client/models/sms_projection.rb +29 -29
  19. data/lib/mailslurp_client/models/template_projection.rb +17 -17
  20. data/lib/mailslurp_client/models/thread_projection.rb +31 -31
  21. data/lib/mailslurp_client/models/tracking_pixel_projection.rb +15 -15
  22. data/lib/mailslurp_client/models/unknown_missed_email_projection.rb +10 -10
  23. data/lib/mailslurp_client/models/webhook_projection.rb +25 -25
  24. data/lib/mailslurp_client/version.rb +1 -1
  25. metadata +2 -2
@@ -15,14 +15,14 @@ require 'date'
15
15
  module MailSlurpClient
16
16
  # ConnectorSyncEventProjection
17
17
  class ConnectorSyncEventProjection
18
+ attr_accessor :created_at
19
+
18
20
  attr_accessor :connector_id
19
21
 
20
22
  attr_accessor :sync_count
21
23
 
22
24
  attr_accessor :sync_status
23
25
 
24
- attr_accessor :created_at
25
-
26
26
  attr_accessor :message
27
27
 
28
28
  attr_accessor :id
@@ -52,10 +52,10 @@ module MailSlurpClient
52
52
  # Attribute mapping from ruby-style variable name to JSON key.
53
53
  def self.attribute_map
54
54
  {
55
+ :'created_at' => :'createdAt',
55
56
  :'connector_id' => :'connectorId',
56
57
  :'sync_count' => :'syncCount',
57
58
  :'sync_status' => :'syncStatus',
58
- :'created_at' => :'createdAt',
59
59
  :'message' => :'message',
60
60
  :'id' => :'id'
61
61
  }
@@ -64,10 +64,10 @@ module MailSlurpClient
64
64
  # Attribute type mapping.
65
65
  def self.openapi_types
66
66
  {
67
+ :'created_at' => :'DateTime',
67
68
  :'connector_id' => :'String',
68
69
  :'sync_count' => :'Integer',
69
70
  :'sync_status' => :'String',
70
- :'created_at' => :'DateTime',
71
71
  :'message' => :'String',
72
72
  :'id' => :'String'
73
73
  }
@@ -94,6 +94,10 @@ module MailSlurpClient
94
94
  h[k.to_sym] = v
95
95
  }
96
96
 
97
+ if attributes.key?(:'created_at')
98
+ self.created_at = attributes[:'created_at']
99
+ end
100
+
97
101
  if attributes.key?(:'connector_id')
98
102
  self.connector_id = attributes[:'connector_id']
99
103
  end
@@ -106,10 +110,6 @@ module MailSlurpClient
106
110
  self.sync_status = attributes[:'sync_status']
107
111
  end
108
112
 
109
- if attributes.key?(:'created_at')
110
- self.created_at = attributes[:'created_at']
111
- end
112
-
113
113
  if attributes.key?(:'message')
114
114
  self.message = attributes[:'message']
115
115
  end
@@ -123,6 +123,10 @@ module MailSlurpClient
123
123
  # @return Array for valid properties with the reasons
124
124
  def list_invalid_properties
125
125
  invalid_properties = Array.new
126
+ if @created_at.nil?
127
+ invalid_properties.push('invalid value for "created_at", created_at cannot be nil.')
128
+ end
129
+
126
130
  if @connector_id.nil?
127
131
  invalid_properties.push('invalid value for "connector_id", connector_id cannot be nil.')
128
132
  end
@@ -135,22 +139,18 @@ module MailSlurpClient
135
139
  invalid_properties.push('invalid value for "sync_status", sync_status cannot be nil.')
136
140
  end
137
141
 
138
- if @created_at.nil?
139
- invalid_properties.push('invalid value for "created_at", created_at cannot be nil.')
140
- end
141
-
142
142
  invalid_properties
143
143
  end
144
144
 
145
145
  # Check to see if the all the properties in the model are valid
146
146
  # @return true if the model is valid
147
147
  def valid?
148
+ return false if @created_at.nil?
148
149
  return false if @connector_id.nil?
149
150
  return false if @sync_count.nil?
150
151
  return false if @sync_status.nil?
151
152
  sync_status_validator = EnumAttributeValidator.new('String', ["SUCCESS", "INTERNAL_ERROR", "SUBSCRIPTION_ERROR", "CONNECTION_ERROR", "NOT_FOUND"])
152
153
  return false unless sync_status_validator.valid?(@sync_status)
153
- return false if @created_at.nil?
154
154
  true
155
155
  end
156
156
 
@@ -169,10 +169,10 @@ module MailSlurpClient
169
169
  def ==(o)
170
170
  return true if self.equal?(o)
171
171
  self.class == o.class &&
172
+ created_at == o.created_at &&
172
173
  connector_id == o.connector_id &&
173
174
  sync_count == o.sync_count &&
174
175
  sync_status == o.sync_status &&
175
- created_at == o.created_at &&
176
176
  message == o.message &&
177
177
  id == o.id
178
178
  end
@@ -186,7 +186,7 @@ module MailSlurpClient
186
186
  # Calculates hash code according to all attributes.
187
187
  # @return [Integer] Hash code
188
188
  def hash
189
- [connector_id, sync_count, sync_status, created_at, message, id].hash
189
+ [created_at, connector_id, sync_count, sync_status, message, id].hash
190
190
  end
191
191
 
192
192
  # Builds the object from hash
@@ -15,6 +15,8 @@ require 'date'
15
15
  module MailSlurpClient
16
16
  # Email contact for address book
17
17
  class ContactProjection
18
+ attr_accessor :created_at
19
+
18
20
  attr_accessor :email_address
19
21
 
20
22
  attr_accessor :email_addresses
@@ -27,8 +29,6 @@ module MailSlurpClient
27
29
 
28
30
  attr_accessor :opt_out
29
31
 
30
- attr_accessor :created_at
31
-
32
32
  attr_accessor :id
33
33
 
34
34
  attr_accessor :group_id
@@ -36,13 +36,13 @@ module MailSlurpClient
36
36
  # Attribute mapping from ruby-style variable name to JSON key.
37
37
  def self.attribute_map
38
38
  {
39
+ :'created_at' => :'createdAt',
39
40
  :'email_address' => :'emailAddress',
40
41
  :'email_addresses' => :'emailAddresses',
41
42
  :'first_name' => :'firstName',
42
43
  :'last_name' => :'lastName',
43
44
  :'company' => :'company',
44
45
  :'opt_out' => :'optOut',
45
- :'created_at' => :'createdAt',
46
46
  :'id' => :'id',
47
47
  :'group_id' => :'groupId'
48
48
  }
@@ -51,13 +51,13 @@ module MailSlurpClient
51
51
  # Attribute type mapping.
52
52
  def self.openapi_types
53
53
  {
54
+ :'created_at' => :'DateTime',
54
55
  :'email_address' => :'String',
55
56
  :'email_addresses' => :'Array<String>',
56
57
  :'first_name' => :'String',
57
58
  :'last_name' => :'String',
58
59
  :'company' => :'String',
59
60
  :'opt_out' => :'Boolean',
60
- :'created_at' => :'DateTime',
61
61
  :'id' => :'String',
62
62
  :'group_id' => :'String'
63
63
  }
@@ -91,6 +91,10 @@ module MailSlurpClient
91
91
  h[k.to_sym] = v
92
92
  }
93
93
 
94
+ if attributes.key?(:'created_at')
95
+ self.created_at = attributes[:'created_at']
96
+ end
97
+
94
98
  if attributes.key?(:'email_address')
95
99
  self.email_address = attributes[:'email_address']
96
100
  end
@@ -117,10 +121,6 @@ module MailSlurpClient
117
121
  self.opt_out = attributes[:'opt_out']
118
122
  end
119
123
 
120
- if attributes.key?(:'created_at')
121
- self.created_at = attributes[:'created_at']
122
- end
123
-
124
124
  if attributes.key?(:'id')
125
125
  self.id = attributes[:'id']
126
126
  end
@@ -158,13 +158,13 @@ module MailSlurpClient
158
158
  def ==(o)
159
159
  return true if self.equal?(o)
160
160
  self.class == o.class &&
161
+ created_at == o.created_at &&
161
162
  email_address == o.email_address &&
162
163
  email_addresses == o.email_addresses &&
163
164
  first_name == o.first_name &&
164
165
  last_name == o.last_name &&
165
166
  company == o.company &&
166
167
  opt_out == o.opt_out &&
167
- created_at == o.created_at &&
168
168
  id == o.id &&
169
169
  group_id == o.group_id
170
170
  end
@@ -178,7 +178,7 @@ module MailSlurpClient
178
178
  # Calculates hash code according to all attributes.
179
179
  # @return [Integer] Hash code
180
180
  def hash
181
- [email_address, email_addresses, first_name, last_name, company, opt_out, created_at, id, group_id].hash
181
+ [created_at, email_address, email_addresses, first_name, last_name, company, opt_out, id, group_id].hash
182
182
  end
183
183
 
184
184
  # Builds the object from hash
@@ -15,6 +15,8 @@ require 'date'
15
15
  module MailSlurpClient
16
16
  # A compact representation of a full email. Used in list endpoints to keep response sizes low. Body and attachments are not included. To get all fields of the email use the `getEmail` method with the email projection's ID. See `EmailDto` for documentation on projection properties.
17
17
  class EmailProjection
18
+ attr_accessor :created_at
19
+
18
20
  attr_accessor :inbox_id
19
21
 
20
22
  attr_accessor :attachments
@@ -37,8 +39,6 @@ module MailSlurpClient
37
39
 
38
40
  attr_accessor :text_excerpt
39
41
 
40
- attr_accessor :created_at
41
-
42
42
  attr_accessor :subject
43
43
 
44
44
  attr_accessor :id
@@ -48,6 +48,7 @@ module MailSlurpClient
48
48
  # Attribute mapping from ruby-style variable name to JSON key.
49
49
  def self.attribute_map
50
50
  {
51
+ :'created_at' => :'createdAt',
51
52
  :'inbox_id' => :'inboxId',
52
53
  :'attachments' => :'attachments',
53
54
  :'to' => :'to',
@@ -59,7 +60,6 @@ module MailSlurpClient
59
60
  :'team_access' => :'teamAccess',
60
61
  :'body_md5_hash' => :'bodyMD5Hash',
61
62
  :'text_excerpt' => :'textExcerpt',
62
- :'created_at' => :'createdAt',
63
63
  :'subject' => :'subject',
64
64
  :'id' => :'id',
65
65
  :'from' => :'from'
@@ -69,6 +69,7 @@ module MailSlurpClient
69
69
  # Attribute type mapping.
70
70
  def self.openapi_types
71
71
  {
72
+ :'created_at' => :'DateTime',
72
73
  :'inbox_id' => :'String',
73
74
  :'attachments' => :'Array<String>',
74
75
  :'to' => :'Array<String>',
@@ -80,7 +81,6 @@ module MailSlurpClient
80
81
  :'team_access' => :'Boolean',
81
82
  :'body_md5_hash' => :'String',
82
83
  :'text_excerpt' => :'String',
83
- :'created_at' => :'DateTime',
84
84
  :'subject' => :'String',
85
85
  :'id' => :'String',
86
86
  :'from' => :'String'
@@ -117,6 +117,10 @@ module MailSlurpClient
117
117
  h[k.to_sym] = v
118
118
  }
119
119
 
120
+ if attributes.key?(:'created_at')
121
+ self.created_at = attributes[:'created_at']
122
+ end
123
+
120
124
  if attributes.key?(:'inbox_id')
121
125
  self.inbox_id = attributes[:'inbox_id']
122
126
  end
@@ -169,10 +173,6 @@ module MailSlurpClient
169
173
  self.text_excerpt = attributes[:'text_excerpt']
170
174
  end
171
175
 
172
- if attributes.key?(:'created_at')
173
- self.created_at = attributes[:'created_at']
174
- end
175
-
176
176
  if attributes.key?(:'subject')
177
177
  self.subject = attributes[:'subject']
178
178
  end
@@ -190,6 +190,10 @@ module MailSlurpClient
190
190
  # @return Array for valid properties with the reasons
191
191
  def list_invalid_properties
192
192
  invalid_properties = Array.new
193
+ if @created_at.nil?
194
+ invalid_properties.push('invalid value for "created_at", created_at cannot be nil.')
195
+ end
196
+
193
197
  if @inbox_id.nil?
194
198
  invalid_properties.push('invalid value for "inbox_id", inbox_id cannot be nil.')
195
199
  end
@@ -206,10 +210,6 @@ module MailSlurpClient
206
210
  invalid_properties.push('invalid value for "team_access", team_access cannot be nil.')
207
211
  end
208
212
 
209
- if @created_at.nil?
210
- invalid_properties.push('invalid value for "created_at", created_at cannot be nil.')
211
- end
212
-
213
213
  if @id.nil?
214
214
  invalid_properties.push('invalid value for "id", id cannot be nil.')
215
215
  end
@@ -220,11 +220,11 @@ module MailSlurpClient
220
220
  # Check to see if the all the properties in the model are valid
221
221
  # @return true if the model is valid
222
222
  def valid?
223
+ return false if @created_at.nil?
223
224
  return false if @inbox_id.nil?
224
225
  return false if @to.nil?
225
226
  return false if @read.nil?
226
227
  return false if @team_access.nil?
227
- return false if @created_at.nil?
228
228
  return false if @id.nil?
229
229
  true
230
230
  end
@@ -234,6 +234,7 @@ module MailSlurpClient
234
234
  def ==(o)
235
235
  return true if self.equal?(o)
236
236
  self.class == o.class &&
237
+ created_at == o.created_at &&
237
238
  inbox_id == o.inbox_id &&
238
239
  attachments == o.attachments &&
239
240
  to == o.to &&
@@ -245,7 +246,6 @@ module MailSlurpClient
245
246
  team_access == o.team_access &&
246
247
  body_md5_hash == o.body_md5_hash &&
247
248
  text_excerpt == o.text_excerpt &&
248
- created_at == o.created_at &&
249
249
  subject == o.subject &&
250
250
  id == o.id &&
251
251
  from == o.from
@@ -260,7 +260,7 @@ module MailSlurpClient
260
260
  # Calculates hash code according to all attributes.
261
261
  # @return [Integer] Hash code
262
262
  def hash
263
- [inbox_id, attachments, to, domain_id, bcc, cc, read, body_excerpt, team_access, body_md5_hash, text_excerpt, created_at, subject, id, from].hash
263
+ [created_at, inbox_id, attachments, to, domain_id, bcc, cc, read, body_excerpt, team_access, body_md5_hash, text_excerpt, subject, id, from].hash
264
264
  end
265
265
 
266
266
  # Builds the object from hash
@@ -15,20 +15,20 @@ require 'date'
15
15
  module MailSlurpClient
16
16
  # Record of inbox expiration
17
17
  class ExpiredInboxRecordProjection
18
+ attr_accessor :created_at
19
+
18
20
  attr_accessor :user_id
19
21
 
20
22
  attr_accessor :email_address
21
23
 
22
- attr_accessor :created_at
23
-
24
24
  attr_accessor :id
25
25
 
26
26
  # Attribute mapping from ruby-style variable name to JSON key.
27
27
  def self.attribute_map
28
28
  {
29
+ :'created_at' => :'createdAt',
29
30
  :'user_id' => :'userId',
30
31
  :'email_address' => :'emailAddress',
31
- :'created_at' => :'createdAt',
32
32
  :'id' => :'id'
33
33
  }
34
34
  end
@@ -36,9 +36,9 @@ module MailSlurpClient
36
36
  # Attribute type mapping.
37
37
  def self.openapi_types
38
38
  {
39
+ :'created_at' => :'DateTime',
39
40
  :'user_id' => :'String',
40
41
  :'email_address' => :'String',
41
- :'created_at' => :'DateTime',
42
42
  :'id' => :'String'
43
43
  }
44
44
  end
@@ -64,6 +64,10 @@ module MailSlurpClient
64
64
  h[k.to_sym] = v
65
65
  }
66
66
 
67
+ if attributes.key?(:'created_at')
68
+ self.created_at = attributes[:'created_at']
69
+ end
70
+
67
71
  if attributes.key?(:'user_id')
68
72
  self.user_id = attributes[:'user_id']
69
73
  end
@@ -72,10 +76,6 @@ module MailSlurpClient
72
76
  self.email_address = attributes[:'email_address']
73
77
  end
74
78
 
75
- if attributes.key?(:'created_at')
76
- self.created_at = attributes[:'created_at']
77
- end
78
-
79
79
  if attributes.key?(:'id')
80
80
  self.id = attributes[:'id']
81
81
  end
@@ -85,6 +85,10 @@ module MailSlurpClient
85
85
  # @return Array for valid properties with the reasons
86
86
  def list_invalid_properties
87
87
  invalid_properties = Array.new
88
+ if @created_at.nil?
89
+ invalid_properties.push('invalid value for "created_at", created_at cannot be nil.')
90
+ end
91
+
88
92
  if @user_id.nil?
89
93
  invalid_properties.push('invalid value for "user_id", user_id cannot be nil.')
90
94
  end
@@ -93,10 +97,6 @@ module MailSlurpClient
93
97
  invalid_properties.push('invalid value for "email_address", email_address cannot be nil.')
94
98
  end
95
99
 
96
- if @created_at.nil?
97
- invalid_properties.push('invalid value for "created_at", created_at cannot be nil.')
98
- end
99
-
100
100
  if @id.nil?
101
101
  invalid_properties.push('invalid value for "id", id cannot be nil.')
102
102
  end
@@ -107,9 +107,9 @@ module MailSlurpClient
107
107
  # Check to see if the all the properties in the model are valid
108
108
  # @return true if the model is valid
109
109
  def valid?
110
+ return false if @created_at.nil?
110
111
  return false if @user_id.nil?
111
112
  return false if @email_address.nil?
112
- return false if @created_at.nil?
113
113
  return false if @id.nil?
114
114
  true
115
115
  end
@@ -119,9 +119,9 @@ module MailSlurpClient
119
119
  def ==(o)
120
120
  return true if self.equal?(o)
121
121
  self.class == o.class &&
122
+ created_at == o.created_at &&
122
123
  user_id == o.user_id &&
123
124
  email_address == o.email_address &&
124
- created_at == o.created_at &&
125
125
  id == o.id
126
126
  end
127
127
 
@@ -134,7 +134,7 @@ module MailSlurpClient
134
134
  # Calculates hash code according to all attributes.
135
135
  # @return [Integer] Hash code
136
136
  def hash
137
- [user_id, email_address, created_at, id].hash
137
+ [created_at, user_id, email_address, id].hash
138
138
  end
139
139
 
140
140
  # Builds the object from hash
@@ -15,6 +15,8 @@ require 'date'
15
15
  module MailSlurpClient
16
16
  # Inbox forwarder event
17
17
  class InboxForwarderEventProjection
18
+ attr_accessor :created_at
19
+
18
20
  attr_accessor :email_id
19
21
 
20
22
  attr_accessor :inbox_id
@@ -23,8 +25,6 @@ module MailSlurpClient
23
25
 
24
26
  attr_accessor :forwarder_id
25
27
 
26
- attr_accessor :created_at
27
-
28
28
  attr_accessor :message
29
29
 
30
30
  attr_accessor :id
@@ -56,11 +56,11 @@ module MailSlurpClient
56
56
  # Attribute mapping from ruby-style variable name to JSON key.
57
57
  def self.attribute_map
58
58
  {
59
+ :'created_at' => :'createdAt',
59
60
  :'email_id' => :'emailId',
60
61
  :'inbox_id' => :'inboxId',
61
62
  :'user_id' => :'userId',
62
63
  :'forwarder_id' => :'forwarderId',
63
- :'created_at' => :'createdAt',
64
64
  :'message' => :'message',
65
65
  :'id' => :'id',
66
66
  :'status' => :'status'
@@ -70,11 +70,11 @@ module MailSlurpClient
70
70
  # Attribute type mapping.
71
71
  def self.openapi_types
72
72
  {
73
+ :'created_at' => :'DateTime',
73
74
  :'email_id' => :'String',
74
75
  :'inbox_id' => :'String',
75
76
  :'user_id' => :'String',
76
77
  :'forwarder_id' => :'String',
77
- :'created_at' => :'DateTime',
78
78
  :'message' => :'String',
79
79
  :'id' => :'String',
80
80
  :'status' => :'String'
@@ -109,6 +109,10 @@ module MailSlurpClient
109
109
  h[k.to_sym] = v
110
110
  }
111
111
 
112
+ if attributes.key?(:'created_at')
113
+ self.created_at = attributes[:'created_at']
114
+ end
115
+
112
116
  if attributes.key?(:'email_id')
113
117
  self.email_id = attributes[:'email_id']
114
118
  end
@@ -125,10 +129,6 @@ module MailSlurpClient
125
129
  self.forwarder_id = attributes[:'forwarder_id']
126
130
  end
127
131
 
128
- if attributes.key?(:'created_at')
129
- self.created_at = attributes[:'created_at']
130
- end
131
-
132
132
  if attributes.key?(:'message')
133
133
  self.message = attributes[:'message']
134
134
  end
@@ -177,11 +177,11 @@ module MailSlurpClient
177
177
  def ==(o)
178
178
  return true if self.equal?(o)
179
179
  self.class == o.class &&
180
+ created_at == o.created_at &&
180
181
  email_id == o.email_id &&
181
182
  inbox_id == o.inbox_id &&
182
183
  user_id == o.user_id &&
183
184
  forwarder_id == o.forwarder_id &&
184
- created_at == o.created_at &&
185
185
  message == o.message &&
186
186
  id == o.id &&
187
187
  status == o.status
@@ -196,7 +196,7 @@ module MailSlurpClient
196
196
  # Calculates hash code according to all attributes.
197
197
  # @return [Integer] Hash code
198
198
  def hash
199
- [email_id, inbox_id, user_id, forwarder_id, created_at, message, id, status].hash
199
+ [created_at, email_id, inbox_id, user_id, forwarder_id, message, id, status].hash
200
200
  end
201
201
 
202
202
  # Builds the object from hash
@@ -15,6 +15,10 @@ require 'date'
15
15
  module MailSlurpClient
16
16
  # Inbox replier event
17
17
  class InboxReplierEventProjection
18
+ attr_accessor :created_at
19
+
20
+ attr_accessor :replier_id
21
+
18
22
  attr_accessor :recipients
19
23
 
20
24
  attr_accessor :email_id
@@ -25,10 +29,6 @@ module MailSlurpClient
25
29
 
26
30
  attr_accessor :sent_id
27
31
 
28
- attr_accessor :replier_id
29
-
30
- attr_accessor :created_at
31
-
32
32
  attr_accessor :message
33
33
 
34
34
  attr_accessor :id
@@ -60,13 +60,13 @@ module MailSlurpClient
60
60
  # Attribute mapping from ruby-style variable name to JSON key.
61
61
  def self.attribute_map
62
62
  {
63
+ :'created_at' => :'createdAt',
64
+ :'replier_id' => :'replierId',
63
65
  :'recipients' => :'recipients',
64
66
  :'email_id' => :'emailId',
65
67
  :'inbox_id' => :'inboxId',
66
68
  :'user_id' => :'userId',
67
69
  :'sent_id' => :'sentId',
68
- :'replier_id' => :'replierId',
69
- :'created_at' => :'createdAt',
70
70
  :'message' => :'message',
71
71
  :'id' => :'id',
72
72
  :'status' => :'status'
@@ -76,13 +76,13 @@ module MailSlurpClient
76
76
  # Attribute type mapping.
77
77
  def self.openapi_types
78
78
  {
79
+ :'created_at' => :'DateTime',
80
+ :'replier_id' => :'String',
79
81
  :'recipients' => :'Array<String>',
80
82
  :'email_id' => :'String',
81
83
  :'inbox_id' => :'String',
82
84
  :'user_id' => :'String',
83
85
  :'sent_id' => :'String',
84
- :'replier_id' => :'String',
85
- :'created_at' => :'DateTime',
86
86
  :'message' => :'String',
87
87
  :'id' => :'String',
88
88
  :'status' => :'String'
@@ -92,12 +92,12 @@ module MailSlurpClient
92
92
  # List of attributes with nullable: true
93
93
  def self.openapi_nullable
94
94
  Set.new([
95
+ :'replier_id',
95
96
  :'recipients',
96
97
  :'email_id',
97
98
  :'inbox_id',
98
99
  :'user_id',
99
100
  :'sent_id',
100
- :'replier_id',
101
101
  :'message',
102
102
  :'id',
103
103
  :'status'
@@ -119,6 +119,14 @@ module MailSlurpClient
119
119
  h[k.to_sym] = v
120
120
  }
121
121
 
122
+ if attributes.key?(:'created_at')
123
+ self.created_at = attributes[:'created_at']
124
+ end
125
+
126
+ if attributes.key?(:'replier_id')
127
+ self.replier_id = attributes[:'replier_id']
128
+ end
129
+
122
130
  if attributes.key?(:'recipients')
123
131
  if (value = attributes[:'recipients']).is_a?(Array)
124
132
  self.recipients = value
@@ -141,14 +149,6 @@ module MailSlurpClient
141
149
  self.sent_id = attributes[:'sent_id']
142
150
  end
143
151
 
144
- if attributes.key?(:'replier_id')
145
- self.replier_id = attributes[:'replier_id']
146
- end
147
-
148
- if attributes.key?(:'created_at')
149
- self.created_at = attributes[:'created_at']
150
- end
151
-
152
152
  if attributes.key?(:'message')
153
153
  self.message = attributes[:'message']
154
154
  end
@@ -197,13 +197,13 @@ module MailSlurpClient
197
197
  def ==(o)
198
198
  return true if self.equal?(o)
199
199
  self.class == o.class &&
200
+ created_at == o.created_at &&
201
+ replier_id == o.replier_id &&
200
202
  recipients == o.recipients &&
201
203
  email_id == o.email_id &&
202
204
  inbox_id == o.inbox_id &&
203
205
  user_id == o.user_id &&
204
206
  sent_id == o.sent_id &&
205
- replier_id == o.replier_id &&
206
- created_at == o.created_at &&
207
207
  message == o.message &&
208
208
  id == o.id &&
209
209
  status == o.status
@@ -218,7 +218,7 @@ module MailSlurpClient
218
218
  # Calculates hash code according to all attributes.
219
219
  # @return [Integer] Hash code
220
220
  def hash
221
- [recipients, email_id, inbox_id, user_id, sent_id, replier_id, created_at, message, id, status].hash
221
+ [created_at, replier_id, recipients, email_id, inbox_id, user_id, sent_id, message, id, status].hash
222
222
  end
223
223
 
224
224
  # Builds the object from hash