struct AutomationCommand
extension AutomationCommand : ActionBehavior, Copyable, Equatable, Escapable, Sendable
A trait command used in an automation action.
-
The trait associated with the command.
Declaration
Swift
let trait: any Trait.Type
-
The unique identifier for the command.
Declaration
Swift
let command: any Command.Type
-
The string-based identifier for the command. If the
command
isUnknownCommand
it will refer to the original Command ID provided.Declaration
Swift
let commandID: String
-
The parameters for the command.
Declaration
Swift
let parameters: [Parameter]
-
Returns true if the action behaviors are equal, false otherwise.
Declaration
Swift
func isEqualTo(_ other: any ActionBehavior) -> Bool
-
Returns a Boolean value indicating whether two values are equal.
Equality is the inverse of inequality. For any values
a
andb
,a == b
implies thata != b
isfalse
.Declaration
Swift
static func == (lhs: AutomationCommand, rhs: AutomationCommand) -> Bool
Parameters
lhs
A value to compare.
rhs
Another value to compare.