forked from grassrootseconomics/visedriver
22 lines
579 B
Go
22 lines
579 B
Go
package models
|
|
|
|
import (
|
|
"encoding/json"
|
|
"time"
|
|
)
|
|
//type Transaction struct {
|
|
// 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 {
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
Status string `json:"status"`
|
|
TransferValue json.Number `json:"transferValue"`
|
|
TxHash string `json:"txHash"`
|
|
TxType string `json:"txType"`
|
|
}
|