monetix gateway

This commit is contained in:
Stephan D
2025-12-04 21:16:15 +01:00
parent f439f53524
commit 396a0c0c88
47 changed files with 3835 additions and 3 deletions

View File

@@ -11,6 +11,10 @@ type CardPaymentData struct {
Pan string `bson:"pan" json:"pan"`
FirstName string `bson:"firstName" json:"firstName"`
LastName string `bson:"lastName" json:"lastName"`
ExpMonth string `bson:"expMonth" json:"expMonth"`
ExpYear string `bson:"expYear" json:"expYear"`
Network string `bson:"network,omitempty" json:"network,omitempty"`
Country string `bson:"country,omitempty" json:"country,omitempty"`
}
func (m *PaymentMethod) AsCard() (*CardPaymentData, error) {