github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payout/BankTransferPayoutMethodSpecificInput.go (about) 1 // This class was auto-generated from the API references found at 2 // https://epayments-api.developer-ingenico.com/ 3 4 package payout 5 6 import "github.com/Ingenico-ePayments/connect-sdk-go/domain/definitions" 7 8 // BankTransferPayoutMethodSpecificInput represents class BankTransferPayoutMethodSpecificInput 9 type BankTransferPayoutMethodSpecificInput struct { 10 BankAccountBban *definitions.BankAccountBban `json:"bankAccountBban,omitempty"` 11 BankAccountIban *definitions.BankAccountIban `json:"bankAccountIban,omitempty"` 12 // Deprecated: Moved to PayoutDetails 13 Customer *Customer `json:"customer,omitempty"` 14 PayoutDate *string `json:"payoutDate,omitempty"` 15 PayoutText *string `json:"payoutText,omitempty"` 16 SwiftCode *string `json:"swiftCode,omitempty"` 17 } 18 19 // NewBankTransferPayoutMethodSpecificInput constructs a new BankTransferPayoutMethodSpecificInput 20 func NewBankTransferPayoutMethodSpecificInput() *BankTransferPayoutMethodSpecificInput { 21 return &BankTransferPayoutMethodSpecificInput{} 22 }