github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payout/CardPayoutMethodSpecificInput.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  // CardPayoutMethodSpecificInput represents class CardPayoutMethodSpecificInput
     9  type CardPayoutMethodSpecificInput struct {
    10  	Card             *definitions.Card `json:"card,omitempty"`
    11  	PaymentProductID *int32            `json:"paymentProductId,omitempty"`
    12  	Recipient        *Recipient        `json:"recipient,omitempty"`
    13  	Token            *string           `json:"token,omitempty"`
    14  }
    15  
    16  // NewCardPayoutMethodSpecificInput constructs a new CardPayoutMethodSpecificInput
    17  func NewCardPayoutMethodSpecificInput() *CardPayoutMethodSpecificInput {
    18  	return &CardPayoutMethodSpecificInput{}
    19  }