@@ -206,7 +206,7 @@ type CalculateCommissionResponse struct {
206
206
type DirectBillingTransactionListResponse struct {
207
207
PaginatedResponse
208
208
TransactionList []struct {
209
- Id int `json:"id"`
209
+ Id string `json:"id"`
210
210
Status string `json:"status"`
211
211
Value float64 `json:"value"`
212
212
ValueNetto float64 `json:"value_netto"`
@@ -219,7 +219,7 @@ type DirectBillingTransactionListResponse struct {
219
219
type DirectBillingTransactionDetailsResponse struct {
220
220
Response
221
221
TransactionDetails struct {
222
- Id int `json:"id"`
222
+ Id string `json:"id"`
223
223
Status string `json:"status"`
224
224
PhoneNumber interface {} `json:"phoneNumber"`
225
225
Control string `json:"control"`
@@ -267,7 +267,7 @@ type DirectBillingGenerateTransactionResponse struct {
267
267
}
268
268
269
269
type DirectBillingTransactionNotification struct {
270
- Id int `json:"id"`
270
+ Id string `json:"id"`
271
271
ServiceId int `json:"service_id"`
272
272
Status string `json:"status"`
273
273
Values struct {
@@ -279,8 +279,8 @@ type DirectBillingTransactionNotification struct {
279
279
Complete string `json:"complete"`
280
280
Failure string `json:"failure"`
281
281
} `json:"returns"`
282
- Control string `json:"control"`
283
- Number string `json:"number "`
284
- Provider int `json:"provider"`
285
- Signature string `json:"Signature"`
282
+ Control string `json:"control"`
283
+ NumberFrom string `json:"number_from "`
284
+ Provider int `json:"provider"`
285
+ Signature string `json:"Signature"`
286
286
}
0 commit comments