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

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package hostedmandatemanagement
     5  
     6  // SpecificInput represents class HostedMandateManagementSpecificInput
     7  type SpecificInput struct {
     8  	Locale         *string `json:"locale,omitempty"`
     9  	ReturnURL      *string `json:"returnUrl,omitempty"`
    10  	ShowResultPage *bool   `json:"showResultPage,omitempty"`
    11  	Variant        *string `json:"variant,omitempty"`
    12  }
    13  
    14  // NewSpecificInput constructs a new SpecificInput
    15  func NewSpecificInput() *SpecificInput {
    16  	return &SpecificInput{}
    17  }