gbox-sdk
    Preparing search index...

    Interface ActionDragSimple

    interface ActionDragSimple {
        duration?: string;
        end: string | DragPathPoint;
        options?: ActionCommonOptions & Omit<
            GboxClient.V1.Boxes.ActionCommonOptions,
            "screenshot",
        >;
        screenshotDelay?: | `${number}h`
        | `${number}m`
        | `${number}s`
        | `${number}ms`;
        start: string
        | DragPathPoint;
    }

    Hierarchy

    Index

    Properties

    duration?: string

    Duration to complete the movement from start to end coordinates

    Supported time units: ms (milliseconds), s (seconds), m (minutes), h (hours) Example formats: "500ms", "30s", "5m", "1h" Default: 500ms

    end: string | DragPathPoint

    End point of the drag path (coordinates or natural language)

    options?: ActionCommonOptions & Omit<
        GboxClient.V1.Boxes.ActionCommonOptions,
        "screenshot",
    >
    screenshotDelay?: `${number}h` | `${number}m` | `${number}s` | `${number}ms`
    start: string | DragPathPoint

    Start point of the drag path (coordinates or natural language)