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

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package product
     5  
     6  // GetCustomerDetailsResponse represents class GetCustomerDetailsResponse
     7  type GetCustomerDetailsResponse struct {
     8  	City         *string `json:"city,omitempty"`
     9  	Country      *string `json:"country,omitempty"`
    10  	EmailAddress *string `json:"emailAddress,omitempty"`
    11  	FirstName    *string `json:"firstName,omitempty"`
    12  	FiscalNumber *string `json:"fiscalNumber,omitempty"`
    13  	LanguageCode *string `json:"languageCode,omitempty"`
    14  	PhoneNumber  *string `json:"phoneNumber,omitempty"`
    15  	Street       *string `json:"street,omitempty"`
    16  	Surname      *string `json:"surname,omitempty"`
    17  	Zip          *string `json:"zip,omitempty"`
    18  }
    19  
    20  // NewGetCustomerDetailsResponse constructs a new GetCustomerDetailsResponse
    21  func NewGetCustomerDetailsResponse() *GetCustomerDetailsResponse {
    22  	return &GetCustomerDetailsResponse{}
    23  }