2024-08-06 16:21:55 +07:00

20 lines
325 B
Go

package entity
type MidtransResponse struct {
Token string
RedirectURL string
}
type MidtransRequest struct {
PaymentReferenceID string
PaymentMethod string
TotalAmount int64
OrderItems []OrderItem
}
type MidtransQrisResponse struct {
QrCodeUrl string
OrderID string
Amount int64
}