late-sdk 0.0.709 → 0.0.710

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 59bd413e033c97b2c115c11e40d78fdd59810470a8a0f1775a6187d0c8cc577e
4
- data.tar.gz: d517d348fe05e5dad30fd9dfc646afd0092218e46916c1508fab2d8810e3fc9d
3
+ metadata.gz: d5fed9d8b79b72d8f5abb79e1baa01c17b3e7cd07abd67f9e3a7a5e7f96c792c
4
+ data.tar.gz: 0ed06e73bd95bd9d327f2ca06d34391fa81fba2c1b48f927957a8bdc02689928
5
5
  SHA512:
6
- metadata.gz: 5eb5d3c2f85e60eae3856b1c2fea12e6015fea70f8398fa3639a7abc9bf121a087ed21bbf5e20a897434ed5e807747f25ef84c50ab9e26e85b7758b7c32ef44f
7
- data.tar.gz: a46ba4e41cf53dd1839427b2456e66745f5becf5ae49a411b507643032036457d86d5c27ac976fc299211ceec03815fa9c8d3763106825a83c36eaedca286b2d
6
+ metadata.gz: 96592ff244d21ab52dd7affece5da908d5dc43bf7d12f95f1010a2afd99444a0202a0bd012fc4db401e3c58af65d46964554cf4e1970e6361f8c296bf83b1c3e
7
+ data.tar.gz: 0c09ee0806644beda7672779a48a94064803080c0d9e90eded2c29a9450899309c62b2b5f8bfcf526c894e590fb528099e2572b457399af42b56ab17cfb5bb68
@@ -14,6 +14,7 @@
14
14
  | **error** | **String** | | [optional] |
15
15
  | **error_code** | **Integer** | Meta WhatsApp error code (e.g. 131049 for antispam, 131021 for invalid phone, 131026 for re-engagement required). Only populated for status=failed. | [optional] |
16
16
  | **error_explanation** | **String** | Plain-language translation of errorCode (e.g. for 131026, that the recipient has likely opted out of marketing messages). Null for unmapped codes; fall back to error. | [optional] |
17
+ | **error_trace_id** | **String** | Meta trace id (fbtrace_id) for the failed send. Quote this when escalating to Meta Direct Support. Only populated for status=failed on Meta platforms. | [optional] |
17
18
  | **sent_at** | **Time** | | [optional] |
18
19
  | **delivered_at** | **Time** | | [optional] |
19
20
  | **read_at** | **Time** | | [optional] |
@@ -34,6 +35,7 @@ instance = Zernio::ListBroadcastRecipients200ResponseRecipientsInner.new(
34
35
  error: null,
35
36
  error_code: null,
36
37
  error_explanation: null,
38
+ error_trace_id: null,
37
39
  sent_at: null,
38
40
  delivered_at: null,
39
41
  read_at: null
@@ -37,6 +37,9 @@ module Zernio
37
37
  # Plain-language translation of errorCode (e.g. for 131026, that the recipient has likely opted out of marketing messages). Null for unmapped codes; fall back to error.
38
38
  attr_accessor :error_explanation
39
39
 
40
+ # Meta trace id (fbtrace_id) for the failed send. Quote this when escalating to Meta Direct Support. Only populated for status=failed on Meta platforms.
41
+ attr_accessor :error_trace_id
42
+
40
43
  attr_accessor :sent_at
41
44
 
42
45
  attr_accessor :delivered_at
@@ -78,6 +81,7 @@ module Zernio
78
81
  :'error' => :'error',
79
82
  :'error_code' => :'errorCode',
80
83
  :'error_explanation' => :'errorExplanation',
84
+ :'error_trace_id' => :'errorTraceId',
81
85
  :'sent_at' => :'sentAt',
82
86
  :'delivered_at' => :'deliveredAt',
83
87
  :'read_at' => :'readAt'
@@ -107,6 +111,7 @@ module Zernio
107
111
  :'error' => :'String',
108
112
  :'error_code' => :'Integer',
109
113
  :'error_explanation' => :'String',
114
+ :'error_trace_id' => :'String',
110
115
  :'sent_at' => :'Time',
111
116
  :'delivered_at' => :'Time',
112
117
  :'read_at' => :'Time'
@@ -118,6 +123,7 @@ module Zernio
118
123
  Set.new([
119
124
  :'error_code',
120
125
  :'error_explanation',
126
+ :'error_trace_id',
121
127
  ])
122
128
  end
123
129
 
@@ -177,6 +183,10 @@ module Zernio
177
183
  self.error_explanation = attributes[:'error_explanation']
178
184
  end
179
185
 
186
+ if attributes.key?(:'error_trace_id')
187
+ self.error_trace_id = attributes[:'error_trace_id']
188
+ end
189
+
180
190
  if attributes.key?(:'sent_at')
181
191
  self.sent_at = attributes[:'sent_at']
182
192
  end
@@ -232,6 +242,7 @@ module Zernio
232
242
  error == o.error &&
233
243
  error_code == o.error_code &&
234
244
  error_explanation == o.error_explanation &&
245
+ error_trace_id == o.error_trace_id &&
235
246
  sent_at == o.sent_at &&
236
247
  delivered_at == o.delivered_at &&
237
248
  read_at == o.read_at
@@ -246,7 +257,7 @@ module Zernio
246
257
  # Calculates hash code according to all attributes.
247
258
  # @return [Integer] Hash code
248
259
  def hash
249
- [id, contact_id, channel_id, platform_identifier, contact_name, status, message_id, error, error_code, error_explanation, sent_at, delivered_at, read_at].hash
260
+ [id, contact_id, channel_id, platform_identifier, contact_name, status, message_id, error, error_code, error_explanation, error_trace_id, sent_at, delivered_at, read_at].hash
250
261
  end
251
262
 
252
263
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Zernio
14
- VERSION = '0.0.709'
14
+ VERSION = '0.0.710'
15
15
  end
data/openapi.yaml CHANGED
@@ -35328,6 +35328,7 @@ paths:
35328
35328
  error: { type: string }
35329
35329
  errorCode: { type: [integer, "null"], description: 'Meta WhatsApp error code (e.g. 131049 for antispam, 131021 for invalid phone, 131026 for re-engagement required). Only populated for status=failed.' }
35330
35330
  errorExplanation: { type: [string, "null"], description: 'Plain-language translation of errorCode (e.g. for 131026, that the recipient has likely opted out of marketing messages). Null for unmapped codes; fall back to error.' }
35331
+ errorTraceId: { type: [string, "null"], description: 'Meta trace id (fbtrace_id) for the failed send. Quote this when escalating to Meta Direct Support. Only populated for status=failed on Meta platforms.' }
35331
35332
  sentAt: { type: string, format: date-time }
35332
35333
  deliveredAt: { type: string, format: date-time }
35333
35334
  readAt: { type: string, format: date-time }
@@ -91,6 +91,12 @@ describe Zernio::ListBroadcastRecipients200ResponseRecipientsInner do
91
91
  end
92
92
  end
93
93
 
94
+ describe 'test attribute "error_trace_id"' do
95
+ it 'should work' do
96
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
97
+ end
98
+ end
99
+
94
100
  describe 'test attribute "sent_at"' do
95
101
  it 'should work' do
96
102
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: late-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.709
4
+ version: 0.0.710
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -5090,7 +5090,7 @@ files:
5090
5090
  - spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
5091
5091
  - spec/models/you_tube_video_retention_response_spec.rb
5092
5092
  - spec/spec_helper.rb
5093
- - zernio-sdk-0.0.709.gem
5093
+ - zernio-sdk-0.0.710.gem
5094
5094
  - zernio-sdk.gemspec
5095
5095
  homepage: https://openapi-generator.tech
5096
5096
  licenses:
Binary file