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

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package definitions
     5  
     6  // CardWithoutCvv represents class CardWithoutCvv
     7  type CardWithoutCvv struct {
     8  	CardNumber     *string `json:"cardNumber,omitempty"`
     9  	CardholderName *string `json:"cardholderName,omitempty"`
    10  	ExpiryDate     *string `json:"expiryDate,omitempty"`
    11  	IssueNumber    *string `json:"issueNumber,omitempty"`
    12  }
    13  
    14  // NewCardWithoutCvv constructs a new CardWithoutCvv
    15  func NewCardWithoutCvv() *CardWithoutCvv {
    16  	return &CardWithoutCvv{}
    17  }