mailslurp_client 11.13.0 → 12.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.3.1
13
13
  require 'date'
14
14
 
15
15
  module MailSlurpClient
16
- # DNS Record required for verification of a domain
16
+ # DNS Record required for verification of a domain. Record vary depending on domain type.
17
17
  class DomainNameRecord
18
18
  attr_accessor :name
19
19
 
@@ -21,19 +21,27 @@ module MailSlurpClient
21
21
  # Optional cc recipients
22
22
  attr_accessor :cc
23
23
 
24
+ # Optional from override
25
+ attr_accessor :from
26
+
24
27
  # Subject for forwarded email
25
28
  attr_accessor :subject
26
29
 
27
30
  # To recipients for forwarded email
28
31
  attr_accessor :to
29
32
 
33
+ # Optionally use inbox name as display name for sender email address
34
+ attr_accessor :use_inbox_name
35
+
30
36
  # Attribute mapping from ruby-style variable name to JSON key.
31
37
  def self.attribute_map
32
38
  {
33
39
  :'bcc' => :'bcc',
34
40
  :'cc' => :'cc',
41
+ :'from' => :'from',
35
42
  :'subject' => :'subject',
36
- :'to' => :'to'
43
+ :'to' => :'to',
44
+ :'use_inbox_name' => :'useInboxName'
37
45
  }
38
46
  end
39
47
 
@@ -42,8 +50,10 @@ module MailSlurpClient
42
50
  {
43
51
  :'bcc' => :'Array<String>',
44
52
  :'cc' => :'Array<String>',
53
+ :'from' => :'String',
45
54
  :'subject' => :'String',
46
- :'to' => :'Array<String>'
55
+ :'to' => :'Array<String>',
56
+ :'use_inbox_name' => :'Boolean'
47
57
  }
48
58
  end
49
59
 
@@ -80,6 +90,10 @@ module MailSlurpClient
80
90
  end
81
91
  end
82
92
 
93
+ if attributes.key?(:'from')
94
+ self.from = attributes[:'from']
95
+ end
96
+
83
97
  if attributes.key?(:'subject')
84
98
  self.subject = attributes[:'subject']
85
99
  end
@@ -89,6 +103,10 @@ module MailSlurpClient
89
103
  self.to = value
90
104
  end
91
105
  end
106
+
107
+ if attributes.key?(:'use_inbox_name')
108
+ self.use_inbox_name = attributes[:'use_inbox_name']
109
+ end
92
110
  end
93
111
 
94
112
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -111,8 +129,10 @@ module MailSlurpClient
111
129
  self.class == o.class &&
112
130
  bcc == o.bcc &&
113
131
  cc == o.cc &&
132
+ from == o.from &&
114
133
  subject == o.subject &&
115
- to == o.to
134
+ to == o.to &&
135
+ use_inbox_name == o.use_inbox_name
116
136
  end
117
137
 
118
138
  # @see the `==` method
@@ -124,7 +144,7 @@ module MailSlurpClient
124
144
  # Calculates hash code according to all attributes.
125
145
  # @return [Integer] Hash code
126
146
  def hash
127
- [bcc, cc, subject, to].hash
147
+ [bcc, cc, from, subject, to, use_inbox_name].hash
128
148
  end
129
149
 
130
150
  # Builds the object from hash
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.3.1
13
13
  require 'date'
14
14
 
15
15
  module MailSlurpClient
16
- # Representation of a MailSlurp inbox. An inbox has an ID and a real email address. Emails can be sent to or from this email address. Use the `EmailController` or the `InboxController` methods to send and receive emails and attachments.
16
+ # Representation of a MailSlurp inbox. An inbox has an ID and a real email address. Emails can be sent to or from this email address. Inboxes are either `SMTP` or `HTTP` mailboxes. The default, `HTTP` inboxes, use AWS SES to process emails and are best suited as test email accounts. `SMTP` inboxes use a custom mail server at `mx.mailslurp.com` and are best used for public facing email addresses. Use the `EmailController` or the `InboxController` methods to send and receive emails and attachments. Inboxes may have a description, name, and tags for display purposes. You can also favourite an inbox for easier searching. Inboxes can be private or allow team access. Team access enabled inboxes can be seen by other members of an organization.
17
17
  class Inbox
18
18
  # When the inbox was created. Time stamps are in ISO DateTime Format `yyyy-MM-dd'T'HH:mm:ss.SSSXXX` e.g. `2000-10-31T01:30:00.000-05:00`.
19
19
  attr_accessor :created_at
@@ -27,13 +27,16 @@ module MailSlurpClient
27
27
  # Inbox expiration time. When, if ever, the inbox should expire and be deleted. If null then this inbox is permanent and the emails in it won't be deleted. This is the default behavior unless expiration date is set. If an expiration date is set and the time is reached MailSlurp will expire the inbox and move it to an expired inbox entity. You can still access the emails belonging to it but it can no longer send or receive email.
28
28
  attr_accessor :expires_at
29
29
 
30
- # Is the inbox favorited. Favouriting inboxes is typically done in the dashboard for quick access or filtering
30
+ # Is the inbox a favorite inbox. Make an inbox a favorite is typically done in the dashboard for quick access or filtering
31
31
  attr_accessor :favourite
32
32
 
33
33
  # ID of the inbox. The ID is a UUID-V4 format string. Use the inboxId for calls to Inbox and Email Controller endpoints. See the emailAddress property for the email address or the inbox. To get emails in an inbox use the WaitFor and Inbox Controller methods `waitForLatestEmail` and `getEmails` methods respectively. Inboxes can be used with aliases to forward emails automatically.
34
34
  attr_accessor :id
35
35
 
36
- # Name of the inbox. Displayed in the dashboard for easier search
36
+ # Type of inbox - either HTTP (default) or SMTP. HTTP inboxes are great for testing. SMTP inboxes are processed by a custom SMTP mail server and are better for public facing inboxes that receive emails from Gmail and other large providers. If using a custom domain the domain type must match the inbox type. Use an SMTP domain for SMTP inboxes that includes an MX record pointing to `10 mx.mailslurp.com` for inbound messages.
37
+ attr_accessor :inbox_type
38
+
39
+ # Name of the inbox and used as the sender name when sending emails .Displayed in the dashboard for easier search
37
40
  attr_accessor :name
38
41
 
39
42
  # Is the inbox readOnly for the caller. Read only means can not be deleted or modified. This flag is present when using team accounts and shared inboxes.
@@ -48,6 +51,28 @@ module MailSlurpClient
48
51
  # ID of user that inbox belongs to
49
52
  attr_accessor :user_id
50
53
 
54
+ class EnumAttributeValidator
55
+ attr_reader :datatype
56
+ attr_reader :allowable_values
57
+
58
+ def initialize(datatype, allowable_values)
59
+ @allowable_values = allowable_values.map do |value|
60
+ case datatype.to_s
61
+ when /Integer/i
62
+ value.to_i
63
+ when /Float/i
64
+ value.to_f
65
+ else
66
+ value
67
+ end
68
+ end
69
+ end
70
+
71
+ def valid?(value)
72
+ !value || allowable_values.include?(value)
73
+ end
74
+ end
75
+
51
76
  # Attribute mapping from ruby-style variable name to JSON key.
52
77
  def self.attribute_map
53
78
  {
@@ -57,6 +82,7 @@ module MailSlurpClient
57
82
  :'expires_at' => :'expiresAt',
58
83
  :'favourite' => :'favourite',
59
84
  :'id' => :'id',
85
+ :'inbox_type' => :'inboxType',
60
86
  :'name' => :'name',
61
87
  :'read_only' => :'readOnly',
62
88
  :'tags' => :'tags',
@@ -74,6 +100,7 @@ module MailSlurpClient
74
100
  :'expires_at' => :'String',
75
101
  :'favourite' => :'Boolean',
76
102
  :'id' => :'String',
103
+ :'inbox_type' => :'String',
77
104
  :'name' => :'String',
78
105
  :'read_only' => :'Boolean',
79
106
  :'tags' => :'Array<String>',
@@ -127,6 +154,10 @@ module MailSlurpClient
127
154
  self.id = attributes[:'id']
128
155
  end
129
156
 
157
+ if attributes.key?(:'inbox_type')
158
+ self.inbox_type = attributes[:'inbox_type']
159
+ end
160
+
130
161
  if attributes.key?(:'name')
131
162
  self.name = attributes[:'name']
132
163
  end
@@ -160,9 +191,21 @@ module MailSlurpClient
160
191
  # Check to see if the all the properties in the model are valid
161
192
  # @return true if the model is valid
162
193
  def valid?
194
+ inbox_type_validator = EnumAttributeValidator.new('String', ["HTTP_INBOX", "SMTP_INBOX"])
195
+ return false unless inbox_type_validator.valid?(@inbox_type)
163
196
  true
164
197
  end
165
198
 
199
+ # Custom attribute writer method checking allowed values (enum).
200
+ # @param [Object] inbox_type Object to be assigned
201
+ def inbox_type=(inbox_type)
202
+ validator = EnumAttributeValidator.new('String', ["HTTP_INBOX", "SMTP_INBOX"])
203
+ unless validator.valid?(inbox_type)
204
+ fail ArgumentError, "invalid value for \"inbox_type\", must be one of #{validator.allowable_values}."
205
+ end
206
+ @inbox_type = inbox_type
207
+ end
208
+
166
209
  # Checks equality by comparing each attribute.
167
210
  # @param [Object] Object to be compared
168
211
  def ==(o)
@@ -174,6 +217,7 @@ module MailSlurpClient
174
217
  expires_at == o.expires_at &&
175
218
  favourite == o.favourite &&
176
219
  id == o.id &&
220
+ inbox_type == o.inbox_type &&
177
221
  name == o.name &&
178
222
  read_only == o.read_only &&
179
223
  tags == o.tags &&
@@ -190,7 +234,7 @@ module MailSlurpClient
190
234
  # Calculates hash code according to all attributes.
191
235
  # @return [Integer] Hash code
192
236
  def hash
193
- [created_at, description, email_address, expires_at, favourite, id, name, read_only, tags, team_access, user_id].hash
237
+ [created_at, description, email_address, expires_at, favourite, id, inbox_type, name, read_only, tags, team_access, user_id].hash
194
238
  end
195
239
 
196
240
  # Builds the object from hash
@@ -22,12 +22,36 @@ module MailSlurpClient
22
22
 
23
23
  attr_accessor :id
24
24
 
25
+ attr_accessor :inbox_type
26
+
25
27
  attr_accessor :name
26
28
 
27
29
  attr_accessor :tags
28
30
 
29
31
  attr_accessor :team_access
30
32
 
33
+ class EnumAttributeValidator
34
+ attr_reader :datatype
35
+ attr_reader :allowable_values
36
+
37
+ def initialize(datatype, allowable_values)
38
+ @allowable_values = allowable_values.map do |value|
39
+ case datatype.to_s
40
+ when /Integer/i
41
+ value.to_i
42
+ when /Float/i
43
+ value.to_f
44
+ else
45
+ value
46
+ end
47
+ end
48
+ end
49
+
50
+ def valid?(value)
51
+ !value || allowable_values.include?(value)
52
+ end
53
+ end
54
+
31
55
  # Attribute mapping from ruby-style variable name to JSON key.
32
56
  def self.attribute_map
33
57
  {
@@ -35,6 +59,7 @@ module MailSlurpClient
35
59
  :'email_address' => :'emailAddress',
36
60
  :'favourite' => :'favourite',
37
61
  :'id' => :'id',
62
+ :'inbox_type' => :'inboxType',
38
63
  :'name' => :'name',
39
64
  :'tags' => :'tags',
40
65
  :'team_access' => :'teamAccess'
@@ -48,6 +73,7 @@ module MailSlurpClient
48
73
  :'email_address' => :'String',
49
74
  :'favourite' => :'Boolean',
50
75
  :'id' => :'String',
76
+ :'inbox_type' => :'String',
51
77
  :'name' => :'String',
52
78
  :'tags' => :'Array<String>',
53
79
  :'team_access' => :'Boolean'
@@ -91,6 +117,10 @@ module MailSlurpClient
91
117
  self.id = attributes[:'id']
92
118
  end
93
119
 
120
+ if attributes.key?(:'inbox_type')
121
+ self.inbox_type = attributes[:'inbox_type']
122
+ end
123
+
94
124
  if attributes.key?(:'name')
95
125
  self.name = attributes[:'name']
96
126
  end
@@ -135,10 +165,22 @@ module MailSlurpClient
135
165
  return false if @created_at.nil?
136
166
  return false if @favourite.nil?
137
167
  return false if @id.nil?
168
+ inbox_type_validator = EnumAttributeValidator.new('String', ["HTTP_INBOX", "SMTP_INBOX"])
169
+ return false unless inbox_type_validator.valid?(@inbox_type)
138
170
  return false if @team_access.nil?
139
171
  true
140
172
  end
141
173
 
174
+ # Custom attribute writer method checking allowed values (enum).
175
+ # @param [Object] inbox_type Object to be assigned
176
+ def inbox_type=(inbox_type)
177
+ validator = EnumAttributeValidator.new('String', ["HTTP_INBOX", "SMTP_INBOX"])
178
+ unless validator.valid?(inbox_type)
179
+ fail ArgumentError, "invalid value for \"inbox_type\", must be one of #{validator.allowable_values}."
180
+ end
181
+ @inbox_type = inbox_type
182
+ end
183
+
142
184
  # Checks equality by comparing each attribute.
143
185
  # @param [Object] Object to be compared
144
186
  def ==(o)
@@ -148,6 +190,7 @@ module MailSlurpClient
148
190
  email_address == o.email_address &&
149
191
  favourite == o.favourite &&
150
192
  id == o.id &&
193
+ inbox_type == o.inbox_type &&
151
194
  name == o.name &&
152
195
  tags == o.tags &&
153
196
  team_access == o.team_access
@@ -162,7 +205,7 @@ module MailSlurpClient
162
205
  # Calculates hash code according to all attributes.
163
206
  # @return [Integer] Hash code
164
207
  def hash
165
- [created_at, email_address, favourite, id, name, tags, team_access].hash
208
+ [created_at, email_address, favourite, id, inbox_type, name, tags, team_access].hash
166
209
  end
167
210
 
168
211
  # Builds the object from hash
@@ -20,13 +20,16 @@ module MailSlurpClient
20
20
  # The inbox's email address. Inbox projections and previews may not include the email address. To view the email address fetch the inbox entity directly. Send an email to this address and the inbox will receive and store it for you. Note the email address in MailSlurp match characters exactly and are case sensitive so `+123` additions are considered different addresses. To retrieve the email use the Inbox and Email Controller endpoints with the inbox ID.
21
21
  attr_accessor :email_address
22
22
 
23
- # Is the inbox favorited. Favouriting inboxes is typically done in the dashboard for quick access or filtering
23
+ # Is the inbox a favorite inbox. Make an inbox a favorite is typically done in the dashboard for quick access or filtering
24
24
  attr_accessor :favourite
25
25
 
26
26
  # ID of the inbox. The ID is a UUID-V4 format string. Use the inboxId for calls to Inbox and Email Controller endpoints. See the emailAddress property for the email address or the inbox. To get emails in an inbox use the WaitFor and Inbox Controller methods `waitForLatestEmail` and `getEmails` methods respectively. Inboxes can be used with aliases to forward emails automatically.
27
27
  attr_accessor :id
28
28
 
29
- # Name of the inbox. Displayed in the dashboard for easier search
29
+ # Type of inbox - either HTTP (default) or SMTP. HTTP inboxes are great for testing. SMTP inboxes are processed by a custom SMTP mail server and are better for public facing inboxes that receive emails from Gmail and other large providers. If using a custom domain the domain type must match the inbox type. Use an SMTP domain for SMTP inboxes that includes an MX record pointing to `10 mx.mailslurp.com` for inbound messages.
30
+ attr_accessor :inbox_type
31
+
32
+ # Name of the inbox and used as the sender name when sending emails .Displayed in the dashboard for easier search
30
33
  attr_accessor :name
31
34
 
32
35
  # Is the inbox readOnly for the caller. Read only means can not be deleted or modified. This flag is present when using team accounts and shared inboxes.
@@ -38,6 +41,28 @@ module MailSlurpClient
38
41
  # Does inbox permit team access for organization team members. If so team users can use inbox and emails associated with it. See the team access guide at https://www.mailslurp.com/guides/team-email-account-sharing/
39
42
  attr_accessor :team_access
40
43
 
44
+ class EnumAttributeValidator
45
+ attr_reader :datatype
46
+ attr_reader :allowable_values
47
+
48
+ def initialize(datatype, allowable_values)
49
+ @allowable_values = allowable_values.map do |value|
50
+ case datatype.to_s
51
+ when /Integer/i
52
+ value.to_i
53
+ when /Float/i
54
+ value.to_f
55
+ else
56
+ value
57
+ end
58
+ end
59
+ end
60
+
61
+ def valid?(value)
62
+ !value || allowable_values.include?(value)
63
+ end
64
+ end
65
+
41
66
  # Attribute mapping from ruby-style variable name to JSON key.
42
67
  def self.attribute_map
43
68
  {
@@ -45,6 +70,7 @@ module MailSlurpClient
45
70
  :'email_address' => :'emailAddress',
46
71
  :'favourite' => :'favourite',
47
72
  :'id' => :'id',
73
+ :'inbox_type' => :'inboxType',
48
74
  :'name' => :'name',
49
75
  :'read_only' => :'readOnly',
50
76
  :'tags' => :'tags',
@@ -59,6 +85,7 @@ module MailSlurpClient
59
85
  :'email_address' => :'String',
60
86
  :'favourite' => :'Boolean',
61
87
  :'id' => :'String',
88
+ :'inbox_type' => :'String',
62
89
  :'name' => :'String',
63
90
  :'read_only' => :'Boolean',
64
91
  :'tags' => :'Array<String>',
@@ -103,6 +130,10 @@ module MailSlurpClient
103
130
  self.id = attributes[:'id']
104
131
  end
105
132
 
133
+ if attributes.key?(:'inbox_type')
134
+ self.inbox_type = attributes[:'inbox_type']
135
+ end
136
+
106
137
  if attributes.key?(:'name')
107
138
  self.name = attributes[:'name']
108
139
  end
@@ -132,9 +163,21 @@ module MailSlurpClient
132
163
  # Check to see if the all the properties in the model are valid
133
164
  # @return true if the model is valid
134
165
  def valid?
166
+ inbox_type_validator = EnumAttributeValidator.new('String', ["HTTP_INBOX", "SMTP_INBOX"])
167
+ return false unless inbox_type_validator.valid?(@inbox_type)
135
168
  true
136
169
  end
137
170
 
171
+ # Custom attribute writer method checking allowed values (enum).
172
+ # @param [Object] inbox_type Object to be assigned
173
+ def inbox_type=(inbox_type)
174
+ validator = EnumAttributeValidator.new('String', ["HTTP_INBOX", "SMTP_INBOX"])
175
+ unless validator.valid?(inbox_type)
176
+ fail ArgumentError, "invalid value for \"inbox_type\", must be one of #{validator.allowable_values}."
177
+ end
178
+ @inbox_type = inbox_type
179
+ end
180
+
138
181
  # Checks equality by comparing each attribute.
139
182
  # @param [Object] Object to be compared
140
183
  def ==(o)
@@ -144,6 +187,7 @@ module MailSlurpClient
144
187
  email_address == o.email_address &&
145
188
  favourite == o.favourite &&
146
189
  id == o.id &&
190
+ inbox_type == o.inbox_type &&
147
191
  name == o.name &&
148
192
  read_only == o.read_only &&
149
193
  tags == o.tags &&
@@ -159,7 +203,7 @@ module MailSlurpClient
159
203
  # Calculates hash code according to all attributes.
160
204
  # @return [Integer] Hash code
161
205
  def hash
162
- [created_at, email_address, favourite, id, name, read_only, tags, team_access].hash
206
+ [created_at, email_address, favourite, id, inbox_type, name, read_only, tags, team_access].hash
163
207
  end
164
208
 
165
209
  # Builds the object from hash
@@ -57,7 +57,7 @@ module MailSlurpClient
57
57
  # Attribute type mapping.
58
58
  def self.openapi_types
59
59
  {
60
- :'content' => :'Array<AttachmentEntity>',
60
+ :'content' => :'Array<AttachmentProjection>',
61
61
  :'empty' => :'Boolean',
62
62
  :'first' => :'Boolean',
63
63
  :'last' => :'Boolean',
@@ -15,6 +15,7 @@ require 'date'
15
15
  module MailSlurpClient
16
16
  # Paginated sent email results. Page index starts at zero. Projection results may omit larger entity fields. For fetching a full sent email entity use the projection ID with individual method calls.
17
17
  class PageSentEmailProjection
18
+ # Collection of items
18
19
  attr_accessor :content
19
20
 
20
21
  attr_accessor :empty
@@ -23,18 +24,23 @@ module MailSlurpClient
23
24
 
24
25
  attr_accessor :last
25
26
 
27
+ # Page number starting at 0
26
28
  attr_accessor :number
27
29
 
30
+ # Number of items returned
28
31
  attr_accessor :number_of_elements
29
32
 
30
33
  attr_accessor :pageable
31
34
 
35
+ # Size of page requested
32
36
  attr_accessor :size
33
37
 
34
38
  attr_accessor :sort
35
39
 
40
+ # Total number of items available for querying
36
41
  attr_accessor :total_elements
37
42
 
43
+ # Total number of pages available
38
44
  attr_accessor :total_pages
39
45
 
40
46
  # Attribute mapping from ruby-style variable name to JSON key.