mirror of
https://github.com/foomo/shop.git
synced 2026-06-08 20:10:01 +00:00
26 lines
430 B
Go
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
|
|
}
|