/** * kameleo-local-api * You can use the following API endpoints to communicate with the local running Kameleo programmatically. * * The version of the OpenAPI document: 4.4.0 * * * 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 Device */ export interface Device { /** * Type of the device. Possible values are: 'desktop', 'mobile'. * @type {string} * @memberof Device */ type: string; /** * Name of the device. This is only available for mobile profiles. * @type {string} * @memberof Device */ name?: string | null; } /** * Check if a given object implements the Device interface. */ export declare function instanceOfDevice(value: object): value is Device; export declare function DeviceFromJSON(json: any): Device; export declare function DeviceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Device; export declare function DeviceToJSON(json: any): Device; export declare function DeviceToJSONTyped(value?: Device | null, ignoreDiscriminator?: boolean): any;