github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/CustomerPaymentActivity.go (about) 1 // This class was auto-generated from the API references found at 2 // https://epayments-api.developer-ingenico.com/ 3 4 package payment 5 6 // CustomerPaymentActivity represents class CustomerPaymentActivity 7 type CustomerPaymentActivity struct { 8 NumberOfPaymentAttemptsLast24Hours *int32 `json:"numberOfPaymentAttemptsLast24Hours,omitempty"` 9 NumberOfPaymentAttemptsLastYear *int32 `json:"numberOfPaymentAttemptsLastYear,omitempty"` 10 NumberOfPurchasesLast6Months *int32 `json:"numberOfPurchasesLast6Months,omitempty"` 11 } 12 13 // NewCustomerPaymentActivity constructs a new CustomerPaymentActivity 14 func NewCustomerPaymentActivity() *CustomerPaymentActivity { 15 return &CustomerPaymentActivity{} 16 }