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

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package product
     5  
     6  // AccountOnFile represents class AccountOnFile
     7  type AccountOnFile struct {
     8  	Attributes       *[]AccountOnFileAttribute  `json:"attributes,omitempty"`
     9  	DisplayHints     *AccountOnFileDisplayHints `json:"displayHints,omitempty"`
    10  	ID               *int32                     `json:"id,omitempty"`
    11  	PaymentProductID *int32                     `json:"paymentProductId,omitempty"`
    12  }
    13  
    14  // NewAccountOnFile constructs a new AccountOnFile
    15  func NewAccountOnFile() *AccountOnFile {
    16  	return &AccountOnFile{}
    17  }