ussd/models/trackstatusresponse.go

19 lines
370 B
Go
Raw Permalink Normal View History

2024-08-26 12:31:20 +02:00
package models
import (
"encoding/json"
"time"
)
2024-10-31 02:28:37 +01:00
type Transaction struct {
2024-10-17 11:49:51 +02:00
CreatedAt time.Time `json:"createdAt"`
Status string `json:"status"`
TransferValue json.Number `json:"transferValue"`
TxHash string `json:"txHash"`
TxType string `json:"txType"`
}
type TrackStatusResult struct {
2024-11-15 16:50:06 +01:00
Active bool `json:"active"`
}