github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/definitions/MicrosoftFraudResults.go (about) 1 // This class was auto-generated from the API references found at 2 // https://epayments-api.developer-ingenico.com/ 3 4 package definitions 5 6 // MicrosoftFraudResults represents class MicrosoftFraudResults 7 type MicrosoftFraudResults struct { 8 ClauseName *string `json:"clauseName,omitempty"` 9 DeviceCountryCode *string `json:"deviceCountryCode,omitempty"` 10 DeviceID *string `json:"deviceId,omitempty"` 11 FraudScore *int32 `json:"fraudScore,omitempty"` 12 PolicyApplied *string `json:"policyApplied,omitempty"` 13 TrueIPAddress *string `json:"trueIpAddress,omitempty"` 14 UserDeviceType *string `json:"userDeviceType,omitempty"` 15 } 16 17 // NewMicrosoftFraudResults constructs a new MicrosoftFraudResults 18 func NewMicrosoftFraudResults() *MicrosoftFraudResults { 19 return &MicrosoftFraudResults{} 20 }