mailslurp_client 8.1.0 → 8.1.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d1015cb70586961b4ce1cd1bfe2c9dbbe87aa499315a6495fcc019a50f77ec6
|
4
|
+
data.tar.gz: 2b3a6d2204707518afeb7448eb5dc23779b0e07a368df4d9156076c6b7cb6af7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f613a4cd36d6946d5382a0535a601383851f385f67c457596a25e4d2c2f7624bd41ee0523ae1cd79bfa077b7bb7acacf4c90fe1d73490aadbe18350c70d7c85
|
7
|
+
data.tar.gz: 20a5312fae03832be520fca753fdbd165975924fcb57b746db5718883b30c7e7a259b20282718f34c51bad42fb40e498ce13ff95f961bfdaa1f0318abe71b57f
|
@@ -106,6 +106,10 @@ module MailSlurpClient
|
|
106
106
|
invalid_properties.push('invalid value for "created_at", created_at cannot be nil.')
|
107
107
|
end
|
108
108
|
|
109
|
+
if @favourite.nil?
|
110
|
+
invalid_properties.push('invalid value for "favourite", favourite cannot be nil.')
|
111
|
+
end
|
112
|
+
|
109
113
|
if @id.nil?
|
110
114
|
invalid_properties.push('invalid value for "id", id cannot be nil.')
|
111
115
|
end
|
@@ -117,6 +121,7 @@ module MailSlurpClient
|
|
117
121
|
# @return true if the model is valid
|
118
122
|
def valid?
|
119
123
|
return false if @created_at.nil?
|
124
|
+
return false if @favourite.nil?
|
120
125
|
return false if @id.nil?
|
121
126
|
true
|
122
127
|
end
|