package models import "time" type Transaction struct { ID int64 `json:"id"` From string `json:"from"` To string `json:"to"` BookingDate time.Time `json:"bookingDate"` ValueDate time.Time `json:"valueDate"` Subject string `json:"subject"` Value int64 `json:"value"` CreatedAt time.Time `json:"createdAt"` UpdatedAt time.Time `json:"updatedAt"` }