Files
shop/payment/vo.go
Florian Schlegel 99939e0fc4 new vo's for payment
2016-03-09 09:55:00 +01:00

26 lines
430 B
Go

package payment
import "time"
type CreditCard struct {
FirstName string
LastName string
CardNumber string
ExpirationDate string
AuthorizationCode string
}
type Debit struct {
FirstName string
LastName string
IBAN string
BIC string
NameOfInstitute string
}
type Voucher struct {
Code string
Value float64
ExpirationDate time.Time
}