github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/CustomerDevice.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 // CustomerDevice represents class CustomerDevice 7 type CustomerDevice struct { 8 AcceptHeader *string `json:"acceptHeader,omitempty"` 9 BrowserData *BrowserData `json:"browserData,omitempty"` 10 DefaultFormFill *string `json:"defaultFormFill,omitempty"` 11 DeviceFingerprintTransactionID *string `json:"deviceFingerprintTransactionId,omitempty"` 12 IPAddress *string `json:"ipAddress,omitempty"` 13 Locale *string `json:"locale,omitempty"` 14 TimezoneOffsetUtcMinutes *string `json:"timezoneOffsetUtcMinutes,omitempty"` 15 UserAgent *string `json:"userAgent,omitempty"` 16 } 17 18 // NewCustomerDevice constructs a new CustomerDevice 19 func NewCustomerDevice() *CustomerDevice { 20 return &CustomerDevice{} 21 }