github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payment/BrowserData.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  // BrowserData represents class BrowserData
     7  type BrowserData struct {
     8  	ColorDepth        *int32  `json:"colorDepth,omitempty"`
     9  	InnerHeight       *string `json:"innerHeight,omitempty"`
    10  	InnerWidth        *string `json:"innerWidth,omitempty"`
    11  	JavaEnabled       *bool   `json:"javaEnabled,omitempty"`
    12  	JavaScriptEnabled *bool   `json:"javaScriptEnabled,omitempty"`
    13  	ScreenHeight      *string `json:"screenHeight,omitempty"`
    14  	ScreenWidth       *string `json:"screenWidth,omitempty"`
    15  }
    16  
    17  // NewBrowserData constructs a new BrowserData
    18  func NewBrowserData() *BrowserData {
    19  	return &BrowserData{}
    20  }