github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/ExemptionOutput.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 // ExemptionOutput represents class ExemptionOutput 7 type ExemptionOutput struct { 8 ExemptionRaised *string `json:"exemptionRaised,omitempty"` 9 ExemptionRejectionReason *string `json:"exemptionRejectionReason,omitempty"` 10 ExemptionRequest *string `json:"exemptionRequest,omitempty"` 11 } 12 13 // NewExemptionOutput constructs a new ExemptionOutput 14 func NewExemptionOutput() *ExemptionOutput { 15 return &ExemptionOutput{} 16 }