github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/token/Creditor.go (about)

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package token
     5  
     6  // Creditor represents class Creditor
     7  type Creditor struct {
     8  	AdditionalAddressInfo *string `json:"additionalAddressInfo,omitempty"`
     9  	City                  *string `json:"city,omitempty"`
    10  	CountryCode           *string `json:"countryCode,omitempty"`
    11  	HouseNumber           *string `json:"houseNumber,omitempty"`
    12  	Iban                  *string `json:"iban,omitempty"`
    13  	ID                    *string `json:"id,omitempty"`
    14  	Name                  *string `json:"name,omitempty"`
    15  	ReferenceParty        *string `json:"referenceParty,omitempty"`
    16  	ReferencePartyID      *string `json:"referencePartyId,omitempty"`
    17  	Street                *string `json:"street,omitempty"`
    18  	Zip                   *string `json:"zip,omitempty"`
    19  }
    20  
    21  // NewCreditor constructs a new Creditor
    22  func NewCreditor() *Creditor {
    23  	return &Creditor{}
    24  }