We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97cbfed commit 10fcdebCopy full SHA for 10fcdeb
api/tem/v1alpha1/tem_sdk.go
@@ -222,11 +222,21 @@ type Domain struct {
222
// DkimConfig: dKIM public key, as should be recorded in the DNS zone
223
DkimConfig string `json:"dkim_config"`
224
// Statistics: domain's statistics
225
- Statistics *Statistics `json:"statistics"`
+ Statistics *DomainStatistics `json:"statistics"`
226
227
Region scw.Region `json:"region"`
228
}
229
230
+type DomainStatistics struct {
231
+ TotalCount uint32 `json:"total_count"`
232
+
233
+ SentCount uint32 `json:"sent_count"`
234
235
+ FailedCount uint32 `json:"failed_count"`
236
237
+ CanceledCount uint32 `json:"canceled_count"`
238
+}
239
240
// Email: email
241
type Email struct {
242
// ID: technical ID of the email
0 commit comments