StartRecording

@Serializable
@SerialName(value = "startrecording")
data class StartRecording(val id: String, val sessionName: String, val path: String, val fps: Int = 1, val showCursor: Boolean = true, var token: String = "") : Command

Constructors

Link copied to clipboard
constructor(id: String, sessionName: String, path: String, fps: Int = 1, showCursor: Boolean = true, token: String = "")

Properties

Link copied to clipboard
val fps: Int
Link copied to clipboard
open override val id: String
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override var token: String

Functions

Link copied to clipboard

Resolves the effective Selector from a Command. If the command implements Command.HasSelector, returns the explicit selector or falls back to Selector.Auto wrapping Command.HasSelector.tag. Returns null for commands that don't target a UI element (e.g., Ping, GetTree).