github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/token/Card.go (about)

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package token
     5  
     6  // Card represents class TokenCard
     7  type Card struct {
     8  	Alias    *string        `json:"alias,omitempty"`
     9  	Customer *CustomerToken `json:"customer,omitempty"`
    10  	Data     *CardData      `json:"data,omitempty"`
    11  }
    12  
    13  // NewCard constructs a new Card
    14  func NewCard() *Card {
    15  	return &Card{}
    16  }