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

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package payment
     5  
     6  // PersonalInformation represents class PersonalInformation
     7  type PersonalInformation struct {
     8  	DateOfBirth    *string                 `json:"dateOfBirth,omitempty"`
     9  	Gender         *string                 `json:"gender,omitempty"`
    10  	Identification *PersonalIdentification `json:"identification,omitempty"`
    11  	Name           *PersonalName           `json:"name,omitempty"`
    12  }
    13  
    14  // NewPersonalInformation constructs a new PersonalInformation
    15  func NewPersonalInformation() *PersonalInformation {
    16  	return &PersonalInformation{}
    17  }