libtmux_mcp.models.CaptureSinceResult
Python
- Python
- Ruby Unavailable
- Lua Unavailable
- TypeScript Unavailable
- Rust Unavailable
- Go Unavailable
- Java Unavailable
- .NET Unavailable
- C++ Unavailable
- Swift Unavailable
- Bases:
- BaseModel
Incremental pane capture result with an opaque resume cursor.
Members
- cursor : str = Field(description="Opaque cursor to pass back to ``capture_since``")
- lines_missed : bool = Field( default=False, description=( "True when prior history was no longer available, so ``lines`` " "is a conservative current visible capture rather than a complete delta" ), )
- truncated : bool = Field( default=False, description="True when ``lines`` was truncated by max_lines or max_bytes", )
- truncated_lines : int = Field( default=0, description="Number of lines dropped from the head when truncating", )
- truncated_bytes : int = Field( default=0, description="Approximate UTF-8 bytes dropped from the head when truncating", )