github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/definitions/InAuth.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  // InAuth represents class InAuth
     7  type InAuth struct {
     8  	DeviceCategory       *string `json:"deviceCategory,omitempty"`
     9  	DeviceID             *string `json:"deviceId,omitempty"`
    10  	RiskScore            *string `json:"riskScore,omitempty"`
    11  	TrueIPAddress        *string `json:"trueIpAddress,omitempty"`
    12  	TrueIPAddressCountry *string `json:"trueIpAddressCountry,omitempty"`
    13  }
    14  
    15  // NewInAuth constructs a new InAuth
    16  func NewInAuth() *InAuth {
    17  	return &InAuth{}
    18  }