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

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package hostedcheckout
     5  
     6  // RecurringPaymentsData represents class RecurringPaymentsData
     7  type RecurringPaymentsData struct {
     8  	RecurringInterval *Frequency        `json:"recurringInterval,omitempty"`
     9  	TrialInformation  *TrialInformation `json:"trialInformation,omitempty"`
    10  }
    11  
    12  // NewRecurringPaymentsData constructs a new RecurringPaymentsData
    13  func NewRecurringPaymentsData() *RecurringPaymentsData {
    14  	return &RecurringPaymentsData{}
    15  }