/** * Daytona Toolbox API * Daytona Toolbox API * * The version of the OpenAPI document: v0.0.0-dev * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Position } from './position'; /** * * @export * @interface ScreenshotResponse */ export interface ScreenshotResponse { /** * * @type {Position} * @memberof ScreenshotResponse */ cursorPosition?: Position; /** * * @type {string} * @memberof ScreenshotResponse */ screenshot?: string; /** * * @type {number} * @memberof ScreenshotResponse */ sizeBytes?: number; }