2024-06-04 02:59:31 +07:00
|
|
|
package entity
|
|
|
|
|
|
|
|
|
|
type MidtransResponse struct {
|
|
|
|
|
Token string
|
|
|
|
|
RedirectURL string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type MidtransRequest struct {
|
|
|
|
|
PaymentReferenceID string
|
2024-08-04 01:14:59 +07:00
|
|
|
PaymentMethod string
|
2024-06-04 02:59:31 +07:00
|
|
|
TotalAmount int64
|
|
|
|
|
OrderItems []OrderItem
|
|
|
|
|
}
|