github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/PersonalIdentification.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 // PersonalIdentification represents class PersonalIdentification 7 type PersonalIdentification struct { 8 IDIssuingCountryCode *string `json:"idIssuingCountryCode,omitempty"` 9 IDType *string `json:"idType,omitempty"` 10 IDValue *string `json:"idValue,omitempty"` 11 } 12 13 // NewPersonalIdentification constructs a new PersonalIdentification 14 func NewPersonalIdentification() *PersonalIdentification { 15 return &PersonalIdentification{} 16 }