github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/token/CardData.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  import "github.com/Ingenico-ePayments/connect-sdk-go/domain/definitions"
     7  
     8  // CardData represents class TokenCardData
     9  type CardData struct {
    10  	CardWithoutCvv       *definitions.CardWithoutCvv `json:"cardWithoutCvv,omitempty"`
    11  	FirstTransactionDate *string                     `json:"firstTransactionDate,omitempty"`
    12  	ProviderReference    *string                     `json:"providerReference,omitempty"`
    13  }
    14  
    15  // NewCardData constructs a new CardData
    16  func NewCardData() *CardData {
    17  	return &CardData{}
    18  }