github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/hostedmandatemanagement/GetResponse.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  import "github.com/Ingenico-ePayments/connect-sdk-go/domain/mandates"
     7  
     8  // GetResponse represents class GetHostedMandateManagementResponse
     9  type GetResponse struct {
    10  	Mandate *mandates.MandateResponse `json:"mandate,omitempty"`
    11  	Status  *string                   `json:"status,omitempty"`
    12  }
    13  
    14  // NewGetResponse constructs a new GetResponse
    15  func NewGetResponse() *GetResponse {
    16  	return &GetResponse{}
    17  }