Type Reference
Every data type that flows between automation node ports, with the properties each object type exposes.
Overview
Automation ports are typed. A connection is only allowed when the output type is compatible with the input type, which is what lets the editor catch mistakes before a run. Object types, such as Ticket or Comment, carry their full set of properties, so a node such as Extract Properties can read any of them.
Types shown as List<T> or Field<T> are generic: they wrap another type, written in the angle brackets. A bare T is a type variable the editor infers from whatever you connect.
Primitives
Scalar values with no sub-properties.
StringNumberIntegerBooleanDateVoidAnyTicket
User
State
Transition
Field<T>
Workflow
Template
Iteration
Project
Link
Link Type
Ticket Field
Comment
Follow
Tag
List<T>
Generic container parameterised over T.
HashSet<T>
Generic container parameterised over T.
HashMap<K, V>
Generic container parameterised over K, V.