/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface DeviceInput */ export interface DeviceInput { /** * * @type {string} * @memberof DeviceInput */ browserLanguage?: string; /** * * @type {string} * @memberof DeviceInput */ browserName?: string; /** * * @type {string} * @memberof DeviceInput */ browserVersion?: string; /** * * @type {string} * @memberof DeviceInput */ deviceBrand?: string; /** * * @type {number} * @memberof DeviceInput */ deviceConcurrency?: number; /** * * @type {number} * @memberof DeviceInput */ deviceMemory?: number; /** * * @type {string} * @memberof DeviceInput */ deviceName?: string; /** * * @type {string} * @memberof DeviceInput */ gpu?: string; /** * * @type {string} * @memberof DeviceInput */ id?: string; /** * * @type {number} * @memberof DeviceInput */ networkBandwidth?: number; /** * * @type {string} * @memberof DeviceInput */ networkConnection?: string; /** * * @type {number} * @memberof DeviceInput */ networkRtt?: number; /** * * @type {string} * @memberof DeviceInput */ platformName?: string; /** * * @type {string} * @memberof DeviceInput */ platformVersion?: string; /** * * @type {number} * @memberof DeviceInput */ screenHeight?: number; /** * * @type {number} * @memberof DeviceInput */ screenRatio?: number; /** * * @type {number} * @memberof DeviceInput */ screenWidth?: number; /** * * @type {boolean} * @memberof DeviceInput */ touchScreen?: boolean; } /** * Check if a given object implements the DeviceInput interface. */ export declare function instanceOfDeviceInput(value: object): value is DeviceInput; export declare function DeviceInputFromJSON(json: any): DeviceInput; export declare function DeviceInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceInput; export declare function DeviceInputToJSON(json: any): DeviceInput; export declare function DeviceInputToJSONTyped(value?: DeviceInput | null, ignoreDiscriminator?: boolean): any;