github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/LoanRecipient.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 // LoanRecipient represents class LoanRecipient 7 // 8 // Deprecated: No replacement 9 type LoanRecipient struct { 10 // Deprecated: No replacement 11 AccountNumber *string `json:"accountNumber,omitempty"` 12 // Deprecated: No replacement 13 DateOfBirth *string `json:"dateOfBirth,omitempty"` 14 // Deprecated: No replacement 15 PartialPan *string `json:"partialPan,omitempty"` 16 // Deprecated: No replacement 17 Surname *string `json:"surname,omitempty"` 18 // Deprecated: No replacement 19 Zip *string `json:"zip,omitempty"` 20 } 21 22 // NewLoanRecipient constructs a new LoanRecipient 23 func NewLoanRecipient() *LoanRecipient { 24 return &LoanRecipient{} 25 }