mailslurp_client 15.17.17 → 15.17.22
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/mailslurp_client/api/inbox_controller_api.rb +183 -0
- data/lib/mailslurp_client/api/sms_controller_api.rb +132 -0
- data/lib/mailslurp_client/api/tools_controller_api.rb +518 -0
- data/lib/mailslurp_client/models/alias_projection.rb +15 -15
- data/lib/mailslurp_client/models/attachment_projection.rb +16 -16
- data/lib/mailslurp_client/models/bounce_projection.rb +10 -10
- data/lib/mailslurp_client/models/connector_projection.rb +15 -15
- data/lib/mailslurp_client/models/generate_bimi_record_options.rb +282 -0
- data/lib/mailslurp_client/models/generate_bimi_record_results.rb +288 -0
- data/lib/mailslurp_client/models/generate_dmarc_record_options.rb +454 -0
- data/lib/mailslurp_client/models/generate_dmarc_record_results.rb +288 -0
- data/lib/mailslurp_client/models/generate_mta_sts_record_options.rb +329 -0
- data/lib/mailslurp_client/models/generate_mta_sts_record_results.rb +316 -0
- data/lib/mailslurp_client/models/generate_tls_reporting_record_options.rb +298 -0
- data/lib/mailslurp_client/models/generate_tls_reporting_record_results.rb +288 -0
- data/lib/mailslurp_client/models/inbox_forwarder_event_projection.rb +11 -11
- data/lib/mailslurp_client/models/inbox_replier_event_projection.rb +11 -11
- data/lib/mailslurp_client/models/lookup_bimi_domain_options.rb +211 -0
- data/lib/mailslurp_client/models/lookup_bimi_domain_results.rb +273 -0
- data/lib/mailslurp_client/models/lookup_dmarc_domain_options.rb +211 -0
- data/lib/mailslurp_client/models/lookup_dmarc_domain_results.rb +273 -0
- data/lib/mailslurp_client/models/lookup_mta_sts_domain_options.rb +211 -0
- data/lib/mailslurp_client/models/lookup_mta_sts_domain_results.rb +315 -0
- data/lib/mailslurp_client/models/lookup_tls_reporting_domain_options.rb +211 -0
- data/lib/mailslurp_client/models/lookup_tls_reporting_domain_results.rb +273 -0
- data/lib/mailslurp_client/models/reply_for_sms.rb +206 -0
- data/lib/mailslurp_client/models/sent_email_projection.rb +15 -15
- data/lib/mailslurp_client/models/sent_sms_dto.rb +351 -0
- data/lib/mailslurp_client/models/sms_reply_options.rb +211 -0
- data/lib/mailslurp_client/models/thread_projection.rb +16 -16
- data/lib/mailslurp_client/models/tracking_pixel_projection.rb +10 -10
- data/lib/mailslurp_client/version.rb +1 -1
- data/lib/mailslurp_client.rb +20 -0
- metadata +22 -2
@@ -0,0 +1,288 @@
|
|
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://docs.mailslurp.com/) - [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
|
+
class GenerateTlsReportingRecordResults
|
17
|
+
attr_accessor :name
|
18
|
+
|
19
|
+
# Domain Name Server Record Types
|
20
|
+
attr_accessor :type
|
21
|
+
|
22
|
+
attr_accessor :ttl
|
23
|
+
|
24
|
+
attr_accessor :value
|
25
|
+
|
26
|
+
class EnumAttributeValidator
|
27
|
+
attr_reader :datatype
|
28
|
+
attr_reader :allowable_values
|
29
|
+
|
30
|
+
def initialize(datatype, allowable_values)
|
31
|
+
@allowable_values = allowable_values.map do |value|
|
32
|
+
case datatype.to_s
|
33
|
+
when /Integer/i
|
34
|
+
value.to_i
|
35
|
+
when /Float/i
|
36
|
+
value.to_f
|
37
|
+
else
|
38
|
+
value
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def valid?(value)
|
44
|
+
!value || allowable_values.include?(value)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
49
|
+
def self.attribute_map
|
50
|
+
{
|
51
|
+
:'name' => :'name',
|
52
|
+
:'type' => :'type',
|
53
|
+
:'ttl' => :'ttl',
|
54
|
+
:'value' => :'value'
|
55
|
+
}
|
56
|
+
end
|
57
|
+
|
58
|
+
# Attribute type mapping.
|
59
|
+
def self.openapi_types
|
60
|
+
{
|
61
|
+
:'name' => :'String',
|
62
|
+
:'type' => :'String',
|
63
|
+
:'ttl' => :'Integer',
|
64
|
+
:'value' => :'String'
|
65
|
+
}
|
66
|
+
end
|
67
|
+
|
68
|
+
# List of attributes with nullable: true
|
69
|
+
def self.openapi_nullable
|
70
|
+
Set.new([
|
71
|
+
])
|
72
|
+
end
|
73
|
+
|
74
|
+
# Initializes the object
|
75
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
76
|
+
def initialize(attributes = {})
|
77
|
+
if (!attributes.is_a?(Hash))
|
78
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `MailSlurpClient::GenerateTlsReportingRecordResults` initialize method"
|
79
|
+
end
|
80
|
+
|
81
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
82
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
83
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
84
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `MailSlurpClient::GenerateTlsReportingRecordResults`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
85
|
+
end
|
86
|
+
h[k.to_sym] = v
|
87
|
+
}
|
88
|
+
|
89
|
+
if attributes.key?(:'name')
|
90
|
+
self.name = attributes[:'name']
|
91
|
+
end
|
92
|
+
|
93
|
+
if attributes.key?(:'type')
|
94
|
+
self.type = attributes[:'type']
|
95
|
+
end
|
96
|
+
|
97
|
+
if attributes.key?(:'ttl')
|
98
|
+
self.ttl = attributes[:'ttl']
|
99
|
+
end
|
100
|
+
|
101
|
+
if attributes.key?(:'value')
|
102
|
+
self.value = attributes[:'value']
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
107
|
+
# @return Array for valid properties with the reasons
|
108
|
+
def list_invalid_properties
|
109
|
+
invalid_properties = Array.new
|
110
|
+
if @name.nil?
|
111
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
112
|
+
end
|
113
|
+
|
114
|
+
if @type.nil?
|
115
|
+
invalid_properties.push('invalid value for "type", type cannot be nil.')
|
116
|
+
end
|
117
|
+
|
118
|
+
if @ttl.nil?
|
119
|
+
invalid_properties.push('invalid value for "ttl", ttl cannot be nil.')
|
120
|
+
end
|
121
|
+
|
122
|
+
if @value.nil?
|
123
|
+
invalid_properties.push('invalid value for "value", value cannot be nil.')
|
124
|
+
end
|
125
|
+
|
126
|
+
invalid_properties
|
127
|
+
end
|
128
|
+
|
129
|
+
# Check to see if the all the properties in the model are valid
|
130
|
+
# @return true if the model is valid
|
131
|
+
def valid?
|
132
|
+
return false if @name.nil?
|
133
|
+
return false if @type.nil?
|
134
|
+
type_validator = EnumAttributeValidator.new('String', ["A", "NS", "MD", "MF", "CNAME", "SOA", "MB", "MG", "MR", "NULL", "WKS", "PTR", "HINFO", "MINFO", "MX", "TXT", "RP", "AFSDB", "X25", "ISDN", "RT", "NSAP", "NSAP_PTR", "SIG", "KEY", "PX", "GPOS", "AAAA", "LOC", "NXT", "EID", "NIMLOC", "SRV", "ATMA", "NAPTR", "KX", "CERT", "A6", "DNAME", "SINK", "OPT", "APL", "DS", "SSHFP", "IPSECKEY", "RRSIG", "NSEC", "DNSKEY", "DHCID", "NSEC3", "NSEC3PARAM", "TLSA", "SMIMEA", "HIP", "NINFO", "RKEY", "TALINK", "CDS", "CDNSKEY", "OPENPGPKEY", "CSYNC", "ZONEMD", "SVCB", "HTTPS", "SPF", "UINFO", "UID", "GID", "UNSPEC", "NID", "L32", "L64", "LP", "EUI48", "EUI64", "TKEY", "TSIG", "IXFR", "AXFR", "MAILB", "MAILA", "ANY", "URI", "CAA", "AVC", "DOA", "AMTRELAY", "TA", "DLV"])
|
135
|
+
return false unless type_validator.valid?(@type)
|
136
|
+
return false if @ttl.nil?
|
137
|
+
return false if @value.nil?
|
138
|
+
true
|
139
|
+
end
|
140
|
+
|
141
|
+
# Custom attribute writer method checking allowed values (enum).
|
142
|
+
# @param [Object] type Object to be assigned
|
143
|
+
def type=(type)
|
144
|
+
validator = EnumAttributeValidator.new('String', ["A", "NS", "MD", "MF", "CNAME", "SOA", "MB", "MG", "MR", "NULL", "WKS", "PTR", "HINFO", "MINFO", "MX", "TXT", "RP", "AFSDB", "X25", "ISDN", "RT", "NSAP", "NSAP_PTR", "SIG", "KEY", "PX", "GPOS", "AAAA", "LOC", "NXT", "EID", "NIMLOC", "SRV", "ATMA", "NAPTR", "KX", "CERT", "A6", "DNAME", "SINK", "OPT", "APL", "DS", "SSHFP", "IPSECKEY", "RRSIG", "NSEC", "DNSKEY", "DHCID", "NSEC3", "NSEC3PARAM", "TLSA", "SMIMEA", "HIP", "NINFO", "RKEY", "TALINK", "CDS", "CDNSKEY", "OPENPGPKEY", "CSYNC", "ZONEMD", "SVCB", "HTTPS", "SPF", "UINFO", "UID", "GID", "UNSPEC", "NID", "L32", "L64", "LP", "EUI48", "EUI64", "TKEY", "TSIG", "IXFR", "AXFR", "MAILB", "MAILA", "ANY", "URI", "CAA", "AVC", "DOA", "AMTRELAY", "TA", "DLV"])
|
145
|
+
unless validator.valid?(type)
|
146
|
+
fail ArgumentError, "invalid value for \"type\", must be one of #{validator.allowable_values}."
|
147
|
+
end
|
148
|
+
@type = type
|
149
|
+
end
|
150
|
+
|
151
|
+
# Checks equality by comparing each attribute.
|
152
|
+
# @param [Object] Object to be compared
|
153
|
+
def ==(o)
|
154
|
+
return true if self.equal?(o)
|
155
|
+
self.class == o.class &&
|
156
|
+
name == o.name &&
|
157
|
+
type == o.type &&
|
158
|
+
ttl == o.ttl &&
|
159
|
+
value == o.value
|
160
|
+
end
|
161
|
+
|
162
|
+
# @see the `==` method
|
163
|
+
# @param [Object] Object to be compared
|
164
|
+
def eql?(o)
|
165
|
+
self == o
|
166
|
+
end
|
167
|
+
|
168
|
+
# Calculates hash code according to all attributes.
|
169
|
+
# @return [Integer] Hash code
|
170
|
+
def hash
|
171
|
+
[name, type, ttl, value].hash
|
172
|
+
end
|
173
|
+
|
174
|
+
# Builds the object from hash
|
175
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
176
|
+
# @return [Object] Returns the model itself
|
177
|
+
def self.build_from_hash(attributes)
|
178
|
+
new.build_from_hash(attributes)
|
179
|
+
end
|
180
|
+
|
181
|
+
# Builds the object from hash
|
182
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
183
|
+
# @return [Object] Returns the model itself
|
184
|
+
def build_from_hash(attributes)
|
185
|
+
return nil unless attributes.is_a?(Hash)
|
186
|
+
self.class.openapi_types.each_pair do |key, type|
|
187
|
+
if type =~ /\AArray<(.*)>/i
|
188
|
+
# check to ensure the input is an array given that the attribute
|
189
|
+
# is documented as an array but the input is not
|
190
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
191
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
192
|
+
end
|
193
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
194
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
195
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
196
|
+
end
|
197
|
+
|
198
|
+
self
|
199
|
+
end
|
200
|
+
|
201
|
+
# Deserializes the data based on type
|
202
|
+
# @param string type Data type
|
203
|
+
# @param string value Value to be deserialized
|
204
|
+
# @return [Object] Deserialized data
|
205
|
+
def _deserialize(type, value)
|
206
|
+
case type.to_sym
|
207
|
+
when :DateTime
|
208
|
+
DateTime.parse(value)
|
209
|
+
when :Date
|
210
|
+
Date.parse(value)
|
211
|
+
when :String
|
212
|
+
value.to_s
|
213
|
+
when :Integer
|
214
|
+
value.to_i
|
215
|
+
when :Float
|
216
|
+
value.to_f
|
217
|
+
when :Boolean
|
218
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
219
|
+
true
|
220
|
+
else
|
221
|
+
false
|
222
|
+
end
|
223
|
+
when :Object
|
224
|
+
# generic object (usually a Hash), return directly
|
225
|
+
value
|
226
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
227
|
+
inner_type = Regexp.last_match[:inner_type]
|
228
|
+
value.map { |v| _deserialize(inner_type, v) }
|
229
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
230
|
+
k_type = Regexp.last_match[:k_type]
|
231
|
+
v_type = Regexp.last_match[:v_type]
|
232
|
+
{}.tap do |hash|
|
233
|
+
value.each do |k, v|
|
234
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
235
|
+
end
|
236
|
+
end
|
237
|
+
else # model
|
238
|
+
MailSlurpClient.const_get(type).build_from_hash(value)
|
239
|
+
end
|
240
|
+
end
|
241
|
+
|
242
|
+
# Returns the string representation of the object
|
243
|
+
# @return [String] String presentation of the object
|
244
|
+
def to_s
|
245
|
+
to_hash.to_s
|
246
|
+
end
|
247
|
+
|
248
|
+
# to_body is an alias to to_hash (backward compatibility)
|
249
|
+
# @return [Hash] Returns the object in the form of hash
|
250
|
+
def to_body
|
251
|
+
to_hash
|
252
|
+
end
|
253
|
+
|
254
|
+
# Returns the object in the form of hash
|
255
|
+
# @return [Hash] Returns the object in the form of hash
|
256
|
+
def to_hash
|
257
|
+
hash = {}
|
258
|
+
self.class.attribute_map.each_pair do |attr, param|
|
259
|
+
value = self.send(attr)
|
260
|
+
if value.nil?
|
261
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
262
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
263
|
+
end
|
264
|
+
|
265
|
+
hash[param] = _to_hash(value)
|
266
|
+
end
|
267
|
+
hash
|
268
|
+
end
|
269
|
+
|
270
|
+
# Outputs non-array value in the form of hash
|
271
|
+
# For object, use to_hash. Otherwise, just return the value
|
272
|
+
# @param [Object] value Any valid value
|
273
|
+
# @return [Hash] Returns the value in the form of hash
|
274
|
+
def _to_hash(value)
|
275
|
+
if value.is_a?(Array)
|
276
|
+
value.compact.map { |v| _to_hash(v) }
|
277
|
+
elsif value.is_a?(Hash)
|
278
|
+
{}.tap do |hash|
|
279
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
280
|
+
end
|
281
|
+
elsif value.respond_to? :to_hash
|
282
|
+
value.to_hash
|
283
|
+
else
|
284
|
+
value
|
285
|
+
end
|
286
|
+
end
|
287
|
+
end
|
288
|
+
end
|
@@ -21,12 +21,12 @@ module MailSlurpClient
|
|
21
21
|
|
22
22
|
attr_accessor :status
|
23
23
|
|
24
|
+
attr_accessor :user_id
|
25
|
+
|
24
26
|
attr_accessor :email_id
|
25
27
|
|
26
28
|
attr_accessor :inbox_id
|
27
29
|
|
28
|
-
attr_accessor :user_id
|
29
|
-
|
30
30
|
attr_accessor :created_at
|
31
31
|
|
32
32
|
attr_accessor :forwarder_id
|
@@ -59,9 +59,9 @@ module MailSlurpClient
|
|
59
59
|
:'message' => :'message',
|
60
60
|
:'id' => :'id',
|
61
61
|
:'status' => :'status',
|
62
|
+
:'user_id' => :'userId',
|
62
63
|
:'email_id' => :'emailId',
|
63
64
|
:'inbox_id' => :'inboxId',
|
64
|
-
:'user_id' => :'userId',
|
65
65
|
:'created_at' => :'createdAt',
|
66
66
|
:'forwarder_id' => :'forwarderId'
|
67
67
|
}
|
@@ -73,9 +73,9 @@ module MailSlurpClient
|
|
73
73
|
:'message' => :'String',
|
74
74
|
:'id' => :'String',
|
75
75
|
:'status' => :'String',
|
76
|
+
:'user_id' => :'String',
|
76
77
|
:'email_id' => :'String',
|
77
78
|
:'inbox_id' => :'String',
|
78
|
-
:'user_id' => :'String',
|
79
79
|
:'created_at' => :'DateTime',
|
80
80
|
:'forwarder_id' => :'String'
|
81
81
|
}
|
@@ -87,9 +87,9 @@ module MailSlurpClient
|
|
87
87
|
:'message',
|
88
88
|
:'id',
|
89
89
|
:'status',
|
90
|
+
:'user_id',
|
90
91
|
:'email_id',
|
91
92
|
:'inbox_id',
|
92
|
-
:'user_id',
|
93
93
|
:'forwarder_id'
|
94
94
|
])
|
95
95
|
end
|
@@ -121,6 +121,10 @@ module MailSlurpClient
|
|
121
121
|
self.status = attributes[:'status']
|
122
122
|
end
|
123
123
|
|
124
|
+
if attributes.key?(:'user_id')
|
125
|
+
self.user_id = attributes[:'user_id']
|
126
|
+
end
|
127
|
+
|
124
128
|
if attributes.key?(:'email_id')
|
125
129
|
self.email_id = attributes[:'email_id']
|
126
130
|
end
|
@@ -129,10 +133,6 @@ module MailSlurpClient
|
|
129
133
|
self.inbox_id = attributes[:'inbox_id']
|
130
134
|
end
|
131
135
|
|
132
|
-
if attributes.key?(:'user_id')
|
133
|
-
self.user_id = attributes[:'user_id']
|
134
|
-
end
|
135
|
-
|
136
136
|
if attributes.key?(:'created_at')
|
137
137
|
self.created_at = attributes[:'created_at']
|
138
138
|
end
|
@@ -180,9 +180,9 @@ module MailSlurpClient
|
|
180
180
|
message == o.message &&
|
181
181
|
id == o.id &&
|
182
182
|
status == o.status &&
|
183
|
+
user_id == o.user_id &&
|
183
184
|
email_id == o.email_id &&
|
184
185
|
inbox_id == o.inbox_id &&
|
185
|
-
user_id == o.user_id &&
|
186
186
|
created_at == o.created_at &&
|
187
187
|
forwarder_id == o.forwarder_id
|
188
188
|
end
|
@@ -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
|
-
[message, id, status, email_id, inbox_id,
|
199
|
+
[message, id, status, user_id, email_id, inbox_id, created_at, forwarder_id].hash
|
200
200
|
end
|
201
201
|
|
202
202
|
# Builds the object from hash
|
@@ -23,12 +23,12 @@ module MailSlurpClient
|
|
23
23
|
|
24
24
|
attr_accessor :recipients
|
25
25
|
|
26
|
+
attr_accessor :user_id
|
27
|
+
|
26
28
|
attr_accessor :email_id
|
27
29
|
|
28
30
|
attr_accessor :inbox_id
|
29
31
|
|
30
|
-
attr_accessor :user_id
|
31
|
-
|
32
32
|
attr_accessor :created_at
|
33
33
|
|
34
34
|
attr_accessor :sent_id
|
@@ -64,9 +64,9 @@ module MailSlurpClient
|
|
64
64
|
:'id' => :'id',
|
65
65
|
:'status' => :'status',
|
66
66
|
:'recipients' => :'recipients',
|
67
|
+
:'user_id' => :'userId',
|
67
68
|
:'email_id' => :'emailId',
|
68
69
|
:'inbox_id' => :'inboxId',
|
69
|
-
:'user_id' => :'userId',
|
70
70
|
:'created_at' => :'createdAt',
|
71
71
|
:'sent_id' => :'sentId',
|
72
72
|
:'replier_id' => :'replierId'
|
@@ -80,9 +80,9 @@ module MailSlurpClient
|
|
80
80
|
:'id' => :'String',
|
81
81
|
:'status' => :'String',
|
82
82
|
:'recipients' => :'Array<String>',
|
83
|
+
:'user_id' => :'String',
|
83
84
|
:'email_id' => :'String',
|
84
85
|
:'inbox_id' => :'String',
|
85
|
-
:'user_id' => :'String',
|
86
86
|
:'created_at' => :'DateTime',
|
87
87
|
:'sent_id' => :'String',
|
88
88
|
:'replier_id' => :'String'
|
@@ -96,9 +96,9 @@ module MailSlurpClient
|
|
96
96
|
:'id',
|
97
97
|
:'status',
|
98
98
|
:'recipients',
|
99
|
+
:'user_id',
|
99
100
|
:'email_id',
|
100
101
|
:'inbox_id',
|
101
|
-
:'user_id',
|
102
102
|
:'sent_id',
|
103
103
|
:'replier_id'
|
104
104
|
])
|
@@ -137,6 +137,10 @@ module MailSlurpClient
|
|
137
137
|
end
|
138
138
|
end
|
139
139
|
|
140
|
+
if attributes.key?(:'user_id')
|
141
|
+
self.user_id = attributes[:'user_id']
|
142
|
+
end
|
143
|
+
|
140
144
|
if attributes.key?(:'email_id')
|
141
145
|
self.email_id = attributes[:'email_id']
|
142
146
|
end
|
@@ -145,10 +149,6 @@ module MailSlurpClient
|
|
145
149
|
self.inbox_id = attributes[:'inbox_id']
|
146
150
|
end
|
147
151
|
|
148
|
-
if attributes.key?(:'user_id')
|
149
|
-
self.user_id = attributes[:'user_id']
|
150
|
-
end
|
151
|
-
|
152
152
|
if attributes.key?(:'created_at')
|
153
153
|
self.created_at = attributes[:'created_at']
|
154
154
|
end
|
@@ -201,9 +201,9 @@ module MailSlurpClient
|
|
201
201
|
id == o.id &&
|
202
202
|
status == o.status &&
|
203
203
|
recipients == o.recipients &&
|
204
|
+
user_id == o.user_id &&
|
204
205
|
email_id == o.email_id &&
|
205
206
|
inbox_id == o.inbox_id &&
|
206
|
-
user_id == o.user_id &&
|
207
207
|
created_at == o.created_at &&
|
208
208
|
sent_id == o.sent_id &&
|
209
209
|
replier_id == o.replier_id
|
@@ -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
|
-
[message, id, status, recipients, email_id, inbox_id,
|
221
|
+
[message, id, status, recipients, user_id, email_id, inbox_id, created_at, sent_id, replier_id].hash
|
222
222
|
end
|
223
223
|
|
224
224
|
# Builds the object from hash
|
@@ -0,0 +1,211 @@
|
|
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://docs.mailslurp.com/) - [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
|
+
class LookupBimiDomainOptions
|
17
|
+
attr_accessor :host
|
18
|
+
|
19
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
20
|
+
def self.attribute_map
|
21
|
+
{
|
22
|
+
:'host' => :'host'
|
23
|
+
}
|
24
|
+
end
|
25
|
+
|
26
|
+
# Attribute type mapping.
|
27
|
+
def self.openapi_types
|
28
|
+
{
|
29
|
+
:'host' => :'String'
|
30
|
+
}
|
31
|
+
end
|
32
|
+
|
33
|
+
# List of attributes with nullable: true
|
34
|
+
def self.openapi_nullable
|
35
|
+
Set.new([
|
36
|
+
])
|
37
|
+
end
|
38
|
+
|
39
|
+
# Initializes the object
|
40
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
41
|
+
def initialize(attributes = {})
|
42
|
+
if (!attributes.is_a?(Hash))
|
43
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `MailSlurpClient::LookupBimiDomainOptions` initialize method"
|
44
|
+
end
|
45
|
+
|
46
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
47
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
48
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
49
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `MailSlurpClient::LookupBimiDomainOptions`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
50
|
+
end
|
51
|
+
h[k.to_sym] = v
|
52
|
+
}
|
53
|
+
|
54
|
+
if attributes.key?(:'host')
|
55
|
+
self.host = attributes[:'host']
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
60
|
+
# @return Array for valid properties with the reasons
|
61
|
+
def list_invalid_properties
|
62
|
+
invalid_properties = Array.new
|
63
|
+
if @host.nil?
|
64
|
+
invalid_properties.push('invalid value for "host", host cannot be nil.')
|
65
|
+
end
|
66
|
+
|
67
|
+
invalid_properties
|
68
|
+
end
|
69
|
+
|
70
|
+
# Check to see if the all the properties in the model are valid
|
71
|
+
# @return true if the model is valid
|
72
|
+
def valid?
|
73
|
+
return false if @host.nil?
|
74
|
+
true
|
75
|
+
end
|
76
|
+
|
77
|
+
# Checks equality by comparing each attribute.
|
78
|
+
# @param [Object] Object to be compared
|
79
|
+
def ==(o)
|
80
|
+
return true if self.equal?(o)
|
81
|
+
self.class == o.class &&
|
82
|
+
host == o.host
|
83
|
+
end
|
84
|
+
|
85
|
+
# @see the `==` method
|
86
|
+
# @param [Object] Object to be compared
|
87
|
+
def eql?(o)
|
88
|
+
self == o
|
89
|
+
end
|
90
|
+
|
91
|
+
# Calculates hash code according to all attributes.
|
92
|
+
# @return [Integer] Hash code
|
93
|
+
def hash
|
94
|
+
[host].hash
|
95
|
+
end
|
96
|
+
|
97
|
+
# Builds the object from hash
|
98
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
99
|
+
# @return [Object] Returns the model itself
|
100
|
+
def self.build_from_hash(attributes)
|
101
|
+
new.build_from_hash(attributes)
|
102
|
+
end
|
103
|
+
|
104
|
+
# Builds the object from hash
|
105
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
106
|
+
# @return [Object] Returns the model itself
|
107
|
+
def build_from_hash(attributes)
|
108
|
+
return nil unless attributes.is_a?(Hash)
|
109
|
+
self.class.openapi_types.each_pair do |key, type|
|
110
|
+
if type =~ /\AArray<(.*)>/i
|
111
|
+
# check to ensure the input is an array given that the attribute
|
112
|
+
# is documented as an array but the input is not
|
113
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
114
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
115
|
+
end
|
116
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
117
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
118
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
119
|
+
end
|
120
|
+
|
121
|
+
self
|
122
|
+
end
|
123
|
+
|
124
|
+
# Deserializes the data based on type
|
125
|
+
# @param string type Data type
|
126
|
+
# @param string value Value to be deserialized
|
127
|
+
# @return [Object] Deserialized data
|
128
|
+
def _deserialize(type, value)
|
129
|
+
case type.to_sym
|
130
|
+
when :DateTime
|
131
|
+
DateTime.parse(value)
|
132
|
+
when :Date
|
133
|
+
Date.parse(value)
|
134
|
+
when :String
|
135
|
+
value.to_s
|
136
|
+
when :Integer
|
137
|
+
value.to_i
|
138
|
+
when :Float
|
139
|
+
value.to_f
|
140
|
+
when :Boolean
|
141
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
142
|
+
true
|
143
|
+
else
|
144
|
+
false
|
145
|
+
end
|
146
|
+
when :Object
|
147
|
+
# generic object (usually a Hash), return directly
|
148
|
+
value
|
149
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
150
|
+
inner_type = Regexp.last_match[:inner_type]
|
151
|
+
value.map { |v| _deserialize(inner_type, v) }
|
152
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
153
|
+
k_type = Regexp.last_match[:k_type]
|
154
|
+
v_type = Regexp.last_match[:v_type]
|
155
|
+
{}.tap do |hash|
|
156
|
+
value.each do |k, v|
|
157
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
158
|
+
end
|
159
|
+
end
|
160
|
+
else # model
|
161
|
+
MailSlurpClient.const_get(type).build_from_hash(value)
|
162
|
+
end
|
163
|
+
end
|
164
|
+
|
165
|
+
# Returns the string representation of the object
|
166
|
+
# @return [String] String presentation of the object
|
167
|
+
def to_s
|
168
|
+
to_hash.to_s
|
169
|
+
end
|
170
|
+
|
171
|
+
# to_body is an alias to to_hash (backward compatibility)
|
172
|
+
# @return [Hash] Returns the object in the form of hash
|
173
|
+
def to_body
|
174
|
+
to_hash
|
175
|
+
end
|
176
|
+
|
177
|
+
# Returns the object in the form of hash
|
178
|
+
# @return [Hash] Returns the object in the form of hash
|
179
|
+
def to_hash
|
180
|
+
hash = {}
|
181
|
+
self.class.attribute_map.each_pair do |attr, param|
|
182
|
+
value = self.send(attr)
|
183
|
+
if value.nil?
|
184
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
185
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
186
|
+
end
|
187
|
+
|
188
|
+
hash[param] = _to_hash(value)
|
189
|
+
end
|
190
|
+
hash
|
191
|
+
end
|
192
|
+
|
193
|
+
# Outputs non-array value in the form of hash
|
194
|
+
# For object, use to_hash. Otherwise, just return the value
|
195
|
+
# @param [Object] value Any valid value
|
196
|
+
# @return [Hash] Returns the value in the form of hash
|
197
|
+
def _to_hash(value)
|
198
|
+
if value.is_a?(Array)
|
199
|
+
value.compact.map { |v| _to_hash(v) }
|
200
|
+
elsif value.is_a?(Hash)
|
201
|
+
{}.tap do |hash|
|
202
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
203
|
+
end
|
204
|
+
elsif value.respond_to? :to_hash
|
205
|
+
value.to_hash
|
206
|
+
else
|
207
|
+
value
|
208
|
+
end
|
209
|
+
end
|
210
|
+
end
|
211
|
+
end
|