github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payout/Recipient.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  // Recipient represents class PayoutRecipient
     7  type Recipient struct {
     8  	FirstName     *string `json:"firstName,omitempty"`
     9  	Surname       *string `json:"surname,omitempty"`
    10  	SurnamePrefix *string `json:"surnamePrefix,omitempty"`
    11  }
    12  
    13  // NewRecipient constructs a new Recipient
    14  func NewRecipient() *Recipient {
    15  	return &Recipient{}
    16  }