github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/token/ApproveRequest.go (about) 1 // This class was auto-generated from the API references found at 2 // https://epayments-api.developer-ingenico.com/ 3 4 package token 5 6 // ApproveRequest represents class ApproveTokenRequest 7 type ApproveRequest struct { 8 MandateSignatureDate *string `json:"mandateSignatureDate,omitempty"` 9 MandateSignaturePlace *string `json:"mandateSignaturePlace,omitempty"` 10 MandateSigned *bool `json:"mandateSigned,omitempty"` 11 } 12 13 // NewApproveRequest constructs a new ApproveRequest 14 func NewApproveRequest() *ApproveRequest { 15 return &ApproveRequest{} 16 }