notifo-io 1.0.1.1 → 1.0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (143) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +205 -4
  3. data/docs/AppDetailsDto.md +0 -8
  4. data/docs/AppIdMediaBody.md +7 -0
  5. data/docs/AppsApi.md +188 -2
  6. data/docs/AuthorizationApi.md +121 -0
  7. data/docs/ConfigsApi.md +1 -1
  8. data/docs/ConfiguredIntegrationDto.md +12 -0
  9. data/docs/ConfiguredIntegrationsDto.md +8 -0
  10. data/docs/CreateIntegrationDto.md +11 -0
  11. data/docs/EventDto.md +1 -0
  12. data/docs/EventsApi.md +45 -1
  13. data/docs/IntegrationCreatedDto.md +8 -0
  14. data/docs/IntegrationDefinitionDto.md +11 -0
  15. data/docs/IntegrationProperties.md +6 -0
  16. data/docs/IntegrationPropertyDto.md +17 -0
  17. data/docs/IntegrationPropertyType.md +6 -0
  18. data/docs/IntegrationStatus.md +6 -0
  19. data/docs/ListResponseDtoOfMobilePushTokenDto.md +8 -0
  20. data/docs/ListResponseDtoOfNotificationDto.md +8 -0
  21. data/docs/LogsApi.md +1 -1
  22. data/docs/MediaApi.md +1 -1
  23. data/docs/MobileDeviceType.md +6 -0
  24. data/docs/MobilePushApi.md +135 -0
  25. data/docs/MobilePushTokenDto.md +8 -0
  26. data/docs/NotificationDto.md +21 -0
  27. data/docs/NotificationsApi.md +141 -0
  28. data/docs/PublishDto.md +2 -0
  29. data/docs/RegisterMobileTokenDto.md +8 -0
  30. data/docs/TemplatesApi.md +1 -1
  31. data/docs/TopicsApi.md +1 -1
  32. data/docs/TrackNotificationDto.md +10 -0
  33. data/docs/UpdateIntegrationDto.md +10 -0
  34. data/docs/UpsertUserDto.md +1 -0
  35. data/docs/UserApi.md +1 -1
  36. data/docs/UserDto.md +3 -0
  37. data/docs/UserInfoApi.md +83 -0
  38. data/docs/UsersApi.md +1 -1
  39. data/lib/notifo.rb +23 -3
  40. data/lib/notifo/api/apps_api.rb +246 -2
  41. data/lib/notifo/api/authorization_api.rb +158 -0
  42. data/lib/notifo/api/configs_api.rb +1 -1
  43. data/lib/notifo/api/events_api.rb +57 -1
  44. data/lib/notifo/api/logs_api.rb +1 -1
  45. data/lib/notifo/api/media_api.rb +1 -1
  46. data/lib/notifo/api/mobile_push_api.rb +178 -0
  47. data/lib/notifo/api/notifications_api.rb +181 -0
  48. data/lib/notifo/api/templates_api.rb +1 -1
  49. data/lib/notifo/api/topics_api.rb +1 -1
  50. data/lib/notifo/api/user_api.rb +1 -1
  51. data/lib/notifo/api/user_info_api.rb +112 -0
  52. data/lib/notifo/api/users_api.rb +1 -1
  53. data/lib/notifo/api_client.rb +1 -1
  54. data/lib/notifo/api_error.rb +1 -1
  55. data/lib/notifo/configuration.rb +3 -3
  56. data/lib/notifo/models/add_allowed_topic_dto.rb +1 -1
  57. data/lib/notifo/models/add_contributor_dto.rb +1 -1
  58. data/lib/notifo/models/app_contributor_dto.rb +1 -1
  59. data/lib/notifo/models/app_details_dto.rb +3 -96
  60. data/lib/notifo/models/app_dto.rb +1 -1
  61. data/lib/notifo/models/app_id_media_body.rb +207 -0
  62. data/lib/notifo/models/configured_integration_dto.rb +271 -0
  63. data/lib/notifo/models/configured_integrations_dto.rb +231 -0
  64. data/lib/notifo/models/confirm_mode.rb +1 -1
  65. data/lib/notifo/models/create_email_template_dto.rb +1 -1
  66. data/lib/notifo/models/create_integration_dto.rb +257 -0
  67. data/lib/notifo/models/email_template_dto.rb +2 -1
  68. data/lib/notifo/models/email_templates_dto.rb +1 -1
  69. data/lib/notifo/models/error_dto.rb +5 -1
  70. data/lib/notifo/models/event_dto.rb +18 -5
  71. data/lib/notifo/models/event_properties.rb +1 -1
  72. data/lib/notifo/models/integration_created_dto.rb +226 -0
  73. data/lib/notifo/models/integration_definition_dto.rb +272 -0
  74. data/lib/notifo/models/integration_properties.rb +201 -0
  75. data/lib/notifo/models/integration_property_dto.rb +319 -0
  76. data/lib/notifo/models/integration_property_type.rb +31 -0
  77. data/lib/notifo/models/integration_status.rb +29 -0
  78. data/lib/notifo/models/iso_day_of_week.rb +1 -1
  79. data/lib/notifo/models/list_response_dto_of_event_dto.rb +1 -1
  80. data/lib/notifo/models/list_response_dto_of_log_entry_dto.rb +1 -1
  81. data/lib/notifo/models/list_response_dto_of_media_dto.rb +1 -1
  82. data/lib/notifo/models/list_response_dto_of_mobile_push_token_dto.rb +229 -0
  83. data/lib/notifo/models/list_response_dto_of_notification_dto.rb +229 -0
  84. data/lib/notifo/models/list_response_dto_of_subscription_dto.rb +1 -1
  85. data/lib/notifo/models/list_response_dto_of_template_dto.rb +1 -1
  86. data/lib/notifo/models/list_response_dto_of_topic_dto.rb +1 -1
  87. data/lib/notifo/models/list_response_dto_of_user_dto.rb +1 -1
  88. data/lib/notifo/models/localized_text.rb +1 -1
  89. data/lib/notifo/models/log_entry_dto.rb +1 -1
  90. data/lib/notifo/models/media_dto.rb +1 -1
  91. data/lib/notifo/models/media_metadata.rb +1 -1
  92. data/lib/notifo/models/media_type.rb +1 -1
  93. data/lib/notifo/models/mobile_device_type.rb +29 -0
  94. data/lib/notifo/models/mobile_push_token_dto.rb +221 -0
  95. data/lib/notifo/models/notification_dto.rb +386 -0
  96. data/lib/notifo/models/notification_formatting_dto.rb +1 -1
  97. data/lib/notifo/models/notification_send.rb +1 -1
  98. data/lib/notifo/models/notification_setting_dto.rb +2 -1
  99. data/lib/notifo/models/profile_dto.rb +4 -1
  100. data/lib/notifo/models/publish_dto.rb +30 -5
  101. data/lib/notifo/models/publish_many_dto.rb +1 -1
  102. data/lib/notifo/models/register_mobile_token_dto.rb +221 -0
  103. data/lib/notifo/models/resize_mode.rb +1 -1
  104. data/lib/notifo/models/scheduling_dto.rb +2 -1
  105. data/lib/notifo/models/scheduling_type.rb +1 -1
  106. data/lib/notifo/models/subscription_dto.rb +2 -1
  107. data/lib/notifo/models/template_dto.rb +1 -1
  108. data/lib/notifo/models/topic_dto.rb +1 -1
  109. data/lib/notifo/models/track_notification_dto.rb +243 -0
  110. data/lib/notifo/models/update_integration_dto.rb +242 -0
  111. data/lib/notifo/models/update_profile_dto.rb +7 -1
  112. data/lib/notifo/models/upsert_app_dto.rb +11 -1
  113. data/lib/notifo/models/upsert_template_dto.rb +2 -1
  114. data/lib/notifo/models/upsert_templates_dto.rb +1 -1
  115. data/lib/notifo/models/upsert_user_dto.rb +21 -2
  116. data/lib/notifo/models/upsert_users_dto.rb +1 -1
  117. data/lib/notifo/models/user_dto.rb +48 -2
  118. data/lib/notifo/version.rb +1 -1
  119. data/notifo-io-1.0.1.1.gem +0 -0
  120. data/notifo.gemspec +2 -2
  121. data/spec/api/authorization_api_spec.rb +61 -0
  122. data/spec/api/mobile_push_api_spec.rb +66 -0
  123. data/spec/api/notifications_api_spec.rb +68 -0
  124. data/spec/api/user_info_api_spec.rb +52 -0
  125. data/spec/models/app_id_media_body_spec.rb +40 -0
  126. data/spec/models/configured_integration_dto_spec.rb +70 -0
  127. data/spec/models/configured_integrations_dto_spec.rb +46 -0
  128. data/spec/models/create_integration_dto_spec.rb +64 -0
  129. data/spec/models/integration_created_dto_spec.rb +46 -0
  130. data/spec/models/integration_definition_dto_spec.rb +64 -0
  131. data/spec/models/integration_properties_spec.rb +34 -0
  132. data/spec/models/integration_property_dto_spec.rb +100 -0
  133. data/spec/models/integration_property_type_spec.rb +34 -0
  134. data/spec/models/integration_status_spec.rb +34 -0
  135. data/spec/models/list_response_dto_of_mobile_push_token_dto_spec.rb +46 -0
  136. data/spec/models/list_response_dto_of_notification_dto_spec.rb +46 -0
  137. data/spec/models/mobile_device_type_spec.rb +34 -0
  138. data/spec/models/mobile_push_token_dto_spec.rb +46 -0
  139. data/spec/models/notification_dto_spec.rb +124 -0
  140. data/spec/models/register_mobile_token_dto_spec.rb +46 -0
  141. data/spec/models/track_notification_dto_spec.rb +58 -0
  142. data/spec/models/update_integration_dto_spec.rb +58 -0
  143. metadata +91 -2
@@ -0,0 +1,386 @@
1
+ =begin
2
+ #Notifo API
3
+
4
+ #No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
5
+
6
+ OpenAPI spec version: 1.0.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 3.0.26
10
+ =end
11
+
12
+ require 'date'
13
+
14
+ module Notifo
15
+ class NotificationDto
16
+ # The id of the notification.
17
+ attr_accessor :id
18
+
19
+ # The subject of the notification in the language of the user.
20
+ attr_accessor :subject
21
+
22
+ # True when the notification is silent.
23
+ attr_accessor :silent
24
+
25
+ # True when the notification has been confirmed.
26
+ attr_accessor :is_confirmed
27
+
28
+ # True when the notification has been seen.
29
+ attr_accessor :is_seen
30
+
31
+ # The timestamp when the notification has been created.
32
+ attr_accessor :created
33
+
34
+ # The optional body text.
35
+ attr_accessor :body
36
+
37
+ # The optional link to the small image.
38
+ attr_accessor :image_small
39
+
40
+ # The optional link to the large image.
41
+ attr_accessor :image_large
42
+
43
+ # The tracking url that needs to be invoked to mark the notifiation as seen.
44
+ attr_accessor :tracking_url
45
+
46
+ # An optional link.
47
+ attr_accessor :link_url
48
+
49
+ # The link text.
50
+ attr_accessor :link_text
51
+
52
+ # The text for the confirm button.
53
+ attr_accessor :confirm_text
54
+
55
+ # The tracking url that needs to be invoked to mark the notifiation as confirmed.
56
+ attr_accessor :confirm_url
57
+
58
+ # Optional data, usually a json object.
59
+ attr_accessor :data
60
+
61
+ # Attribute mapping from ruby-style variable name to JSON key.
62
+ def self.attribute_map
63
+ {
64
+ :'id' => :'id',
65
+ :'subject' => :'subject',
66
+ :'silent' => :'silent',
67
+ :'is_confirmed' => :'isConfirmed',
68
+ :'is_seen' => :'isSeen',
69
+ :'created' => :'created',
70
+ :'body' => :'body',
71
+ :'image_small' => :'imageSmall',
72
+ :'image_large' => :'imageLarge',
73
+ :'tracking_url' => :'trackingUrl',
74
+ :'link_url' => :'linkUrl',
75
+ :'link_text' => :'linkText',
76
+ :'confirm_text' => :'confirmText',
77
+ :'confirm_url' => :'confirmUrl',
78
+ :'data' => :'data'
79
+ }
80
+ end
81
+
82
+ # Attribute type mapping.
83
+ def self.openapi_types
84
+ {
85
+ :'id' => :'Object',
86
+ :'subject' => :'Object',
87
+ :'silent' => :'Object',
88
+ :'is_confirmed' => :'Object',
89
+ :'is_seen' => :'Object',
90
+ :'created' => :'Object',
91
+ :'body' => :'Object',
92
+ :'image_small' => :'Object',
93
+ :'image_large' => :'Object',
94
+ :'tracking_url' => :'Object',
95
+ :'link_url' => :'Object',
96
+ :'link_text' => :'Object',
97
+ :'confirm_text' => :'Object',
98
+ :'confirm_url' => :'Object',
99
+ :'data' => :'Object'
100
+ }
101
+ end
102
+
103
+ # List of attributes with nullable: true
104
+ def self.openapi_nullable
105
+ Set.new([
106
+ :'body',
107
+ :'image_small',
108
+ :'image_large',
109
+ :'tracking_url',
110
+ :'link_url',
111
+ :'link_text',
112
+ :'confirm_text',
113
+ :'confirm_url',
114
+ :'data'
115
+ ])
116
+ end
117
+
118
+ # Initializes the object
119
+ # @param [Hash] attributes Model attributes in the form of hash
120
+ def initialize(attributes = {})
121
+ if (!attributes.is_a?(Hash))
122
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Notifo::NotificationDto` initialize method"
123
+ end
124
+
125
+ # check to see if the attribute exists and convert string to symbol for hash key
126
+ attributes = attributes.each_with_object({}) { |(k, v), h|
127
+ if (!self.class.attribute_map.key?(k.to_sym))
128
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Notifo::NotificationDto`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
129
+ end
130
+ h[k.to_sym] = v
131
+ }
132
+
133
+ if attributes.key?(:'id')
134
+ self.id = attributes[:'id']
135
+ end
136
+
137
+ if attributes.key?(:'subject')
138
+ self.subject = attributes[:'subject']
139
+ end
140
+
141
+ if attributes.key?(:'silent')
142
+ self.silent = attributes[:'silent']
143
+ end
144
+
145
+ if attributes.key?(:'is_confirmed')
146
+ self.is_confirmed = attributes[:'is_confirmed']
147
+ end
148
+
149
+ if attributes.key?(:'is_seen')
150
+ self.is_seen = attributes[:'is_seen']
151
+ end
152
+
153
+ if attributes.key?(:'created')
154
+ self.created = attributes[:'created']
155
+ end
156
+
157
+ if attributes.key?(:'body')
158
+ self.body = attributes[:'body']
159
+ end
160
+
161
+ if attributes.key?(:'image_small')
162
+ self.image_small = attributes[:'image_small']
163
+ end
164
+
165
+ if attributes.key?(:'image_large')
166
+ self.image_large = attributes[:'image_large']
167
+ end
168
+
169
+ if attributes.key?(:'tracking_url')
170
+ self.tracking_url = attributes[:'tracking_url']
171
+ end
172
+
173
+ if attributes.key?(:'link_url')
174
+ self.link_url = attributes[:'link_url']
175
+ end
176
+
177
+ if attributes.key?(:'link_text')
178
+ self.link_text = attributes[:'link_text']
179
+ end
180
+
181
+ if attributes.key?(:'confirm_text')
182
+ self.confirm_text = attributes[:'confirm_text']
183
+ end
184
+
185
+ if attributes.key?(:'confirm_url')
186
+ self.confirm_url = attributes[:'confirm_url']
187
+ end
188
+
189
+ if attributes.key?(:'data')
190
+ self.data = attributes[:'data']
191
+ end
192
+ end
193
+
194
+ # Show invalid properties with the reasons. Usually used together with valid?
195
+ # @return Array for valid properties with the reasons
196
+ def list_invalid_properties
197
+ invalid_properties = Array.new
198
+ if @id.nil?
199
+ invalid_properties.push('invalid value for "id", id cannot be nil.')
200
+ end
201
+
202
+ if @subject.nil?
203
+ invalid_properties.push('invalid value for "subject", subject cannot be nil.')
204
+ end
205
+
206
+ if @silent.nil?
207
+ invalid_properties.push('invalid value for "silent", silent cannot be nil.')
208
+ end
209
+
210
+ if @is_confirmed.nil?
211
+ invalid_properties.push('invalid value for "is_confirmed", is_confirmed cannot be nil.')
212
+ end
213
+
214
+ if @is_seen.nil?
215
+ invalid_properties.push('invalid value for "is_seen", is_seen cannot be nil.')
216
+ end
217
+
218
+ if @created.nil?
219
+ invalid_properties.push('invalid value for "created", created cannot be nil.')
220
+ end
221
+
222
+ invalid_properties
223
+ end
224
+
225
+ # Check to see if the all the properties in the model are valid
226
+ # @return true if the model is valid
227
+ def valid?
228
+ return false if @id.nil?
229
+ return false if @subject.nil?
230
+ return false if @silent.nil?
231
+ return false if @is_confirmed.nil?
232
+ return false if @is_seen.nil?
233
+ return false if @created.nil?
234
+ true
235
+ end
236
+
237
+ # Checks equality by comparing each attribute.
238
+ # @param [Object] Object to be compared
239
+ def ==(o)
240
+ return true if self.equal?(o)
241
+ self.class == o.class &&
242
+ id == o.id &&
243
+ subject == o.subject &&
244
+ silent == o.silent &&
245
+ is_confirmed == o.is_confirmed &&
246
+ is_seen == o.is_seen &&
247
+ created == o.created &&
248
+ body == o.body &&
249
+ image_small == o.image_small &&
250
+ image_large == o.image_large &&
251
+ tracking_url == o.tracking_url &&
252
+ link_url == o.link_url &&
253
+ link_text == o.link_text &&
254
+ confirm_text == o.confirm_text &&
255
+ confirm_url == o.confirm_url &&
256
+ data == o.data
257
+ end
258
+
259
+ # @see the `==` method
260
+ # @param [Object] Object to be compared
261
+ def eql?(o)
262
+ self == o
263
+ end
264
+
265
+ # Calculates hash code according to all attributes.
266
+ # @return [Integer] Hash code
267
+ def hash
268
+ [id, subject, silent, is_confirmed, is_seen, created, body, image_small, image_large, tracking_url, link_url, link_text, confirm_text, confirm_url, data].hash
269
+ end
270
+
271
+ # Builds the object from hash
272
+ # @param [Hash] attributes Model attributes in the form of hash
273
+ # @return [Object] Returns the model itself
274
+ def self.build_from_hash(attributes)
275
+ new.build_from_hash(attributes)
276
+ end
277
+
278
+ # Builds the object from hash
279
+ # @param [Hash] attributes Model attributes in the form of hash
280
+ # @return [Object] Returns the model itself
281
+ def build_from_hash(attributes)
282
+ return nil unless attributes.is_a?(Hash)
283
+ self.class.openapi_types.each_pair do |key, type|
284
+ if type =~ /\AArray<(.*)>/i
285
+ # check to ensure the input is an array given that the attribute
286
+ # is documented as an array but the input is not
287
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
288
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
289
+ end
290
+ elsif !attributes[self.class.attribute_map[key]].nil?
291
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
292
+ elsif attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
293
+ self.send("#{key}=", nil)
294
+ end
295
+ end
296
+
297
+ self
298
+ end
299
+
300
+ # Deserializes the data based on type
301
+ # @param string type Data type
302
+ # @param string value Value to be deserialized
303
+ # @return [Object] Deserialized data
304
+ def _deserialize(type, value)
305
+ case type.to_sym
306
+ when :DateTime
307
+ DateTime.parse(value)
308
+ when :Date
309
+ Date.parse(value)
310
+ when :String
311
+ value.to_s
312
+ when :Integer
313
+ value.to_i
314
+ when :Float
315
+ value.to_f
316
+ when :Boolean
317
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
318
+ true
319
+ else
320
+ false
321
+ end
322
+ when :Object
323
+ # generic object (usually a Hash), return directly
324
+ value
325
+ when /\AArray<(?<inner_type>.+)>\z/
326
+ inner_type = Regexp.last_match[:inner_type]
327
+ value.map { |v| _deserialize(inner_type, v) }
328
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
329
+ k_type = Regexp.last_match[:k_type]
330
+ v_type = Regexp.last_match[:v_type]
331
+ {}.tap do |hash|
332
+ value.each do |k, v|
333
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
334
+ end
335
+ end
336
+ else # model
337
+ Notifo.const_get(type).build_from_hash(value)
338
+ end
339
+ end
340
+
341
+ # Returns the string representation of the object
342
+ # @return [String] String presentation of the object
343
+ def to_s
344
+ to_hash.to_s
345
+ end
346
+
347
+ # to_body is an alias to to_hash (backward compatibility)
348
+ # @return [Hash] Returns the object in the form of hash
349
+ def to_body
350
+ to_hash
351
+ end
352
+
353
+ # Returns the object in the form of hash
354
+ # @return [Hash] Returns the object in the form of hash
355
+ def to_hash
356
+ hash = {}
357
+ self.class.attribute_map.each_pair do |attr, param|
358
+ value = self.send(attr)
359
+ if value.nil?
360
+ is_nullable = self.class.openapi_nullable.include?(attr)
361
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
362
+ end
363
+
364
+ hash[param] = _to_hash(value)
365
+ end
366
+ hash
367
+ end
368
+
369
+ # Outputs non-array value in the form of hash
370
+ # For object, use to_hash. Otherwise, just return the value
371
+ # @param [Object] value Any valid value
372
+ # @return [Hash] Returns the value in the form of hash
373
+ def _to_hash(value)
374
+ if value.is_a?(Array)
375
+ value.compact.map { |v| _to_hash(v) }
376
+ elsif value.is_a?(Hash)
377
+ {}.tap do |hash|
378
+ value.each { |k, v| hash[k] = _to_hash(v) }
379
+ end
380
+ elsif value.respond_to? :to_hash
381
+ value.to_hash
382
+ else
383
+ value
384
+ end
385
+ end end
386
+ end
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: 1.0.0
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 3.0.24
9
+ Swagger Codegen version: 3.0.26
10
10
  =end
11
11
 
12
12
  require 'date'
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: 1.0.0
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 3.0.24
9
+ Swagger Codegen version: 3.0.26
10
10
  =end
11
11
 
12
12
  require 'date'
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: 1.0.0
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 3.0.24
9
+ Swagger Codegen version: 3.0.26
10
10
  =end
11
11
 
12
12
  require 'date'
@@ -37,6 +37,7 @@ module Notifo
37
37
  # List of attributes with nullable: true
38
38
  def self.openapi_nullable
39
39
  Set.new([
40
+ :'delay_in_seconds'
40
41
  ])
41
42
  end
42
43
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: 1.0.0
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 3.0.24
9
+ Swagger Codegen version: 3.0.26
10
10
  =end
11
11
 
12
12
  require 'date'
@@ -68,6 +68,9 @@ module Notifo
68
68
  # List of attributes with nullable: true
69
69
  def self.openapi_nullable
70
70
  Set.new([
71
+ :'phone_number',
72
+ :'preferred_language',
73
+ :'preferred_timezone',
71
74
  ])
72
75
  end
73
76
 
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: 1.0.0
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 3.0.24
9
+ Swagger Codegen version: 3.0.26
10
10
  =end
11
11
 
12
12
  require 'date'
@@ -40,6 +40,12 @@ module Notifo
40
40
  # True when silent.
41
41
  attr_accessor :silent
42
42
 
43
+ # True when using test integrations.
44
+ attr_accessor :test
45
+
46
+ # The time to live in seconds.
47
+ attr_accessor :time_to_live_in_seconds
48
+
43
49
  # Attribute mapping from ruby-style variable name to JSON key.
44
50
  def self.attribute_map
45
51
  {
@@ -52,7 +58,9 @@ module Notifo
52
58
  :'settings' => :'settings',
53
59
  :'properties' => :'properties',
54
60
  :'scheduling' => :'scheduling',
55
- :'silent' => :'silent'
61
+ :'silent' => :'silent',
62
+ :'test' => :'test',
63
+ :'time_to_live_in_seconds' => :'timeToLiveInSeconds'
56
64
  }
57
65
  end
58
66
 
@@ -68,13 +76,20 @@ module Notifo
68
76
  :'settings' => :'Object',
69
77
  :'properties' => :'Object',
70
78
  :'scheduling' => :'Object',
71
- :'silent' => :'Object'
79
+ :'silent' => :'Object',
80
+ :'test' => :'Object',
81
+ :'time_to_live_in_seconds' => :'Object'
72
82
  }
73
83
  end
74
84
 
75
85
  # List of attributes with nullable: true
76
86
  def self.openapi_nullable
77
87
  Set.new([
88
+ :'creator_id',
89
+ :'template_code',
90
+ :'data',
91
+ :'settings',
92
+ :'time_to_live_in_seconds'
78
93
  ])
79
94
  end
80
95
 
@@ -134,6 +149,14 @@ module Notifo
134
149
  if attributes.key?(:'silent')
135
150
  self.silent = attributes[:'silent']
136
151
  end
152
+
153
+ if attributes.key?(:'test')
154
+ self.test = attributes[:'test']
155
+ end
156
+
157
+ if attributes.key?(:'time_to_live_in_seconds')
158
+ self.time_to_live_in_seconds = attributes[:'time_to_live_in_seconds']
159
+ end
137
160
  end
138
161
 
139
162
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -168,7 +191,9 @@ module Notifo
168
191
  settings == o.settings &&
169
192
  properties == o.properties &&
170
193
  scheduling == o.scheduling &&
171
- silent == o.silent
194
+ silent == o.silent &&
195
+ test == o.test &&
196
+ time_to_live_in_seconds == o.time_to_live_in_seconds
172
197
  end
173
198
 
174
199
  # @see the `==` method
@@ -180,7 +205,7 @@ module Notifo
180
205
  # Calculates hash code according to all attributes.
181
206
  # @return [Integer] Hash code
182
207
  def hash
183
- [topic, creator_id, template_code, data, timestamp, preformatted, settings, properties, scheduling, silent].hash
208
+ [topic, creator_id, template_code, data, timestamp, preformatted, settings, properties, scheduling, silent, test, time_to_live_in_seconds].hash
184
209
  end
185
210
 
186
211
  # Builds the object from hash