Class representing a process template step.
Public fields
name
The name of the step.
userGroupName
The name of the user group assigned to the step.
Methods
Method new()
Create a new Step instance.
Usage
Step$new(name = NULL, userGroupName = NULL)
Arguments
name
The name of the step.
userGroupName
The name of the user group assigned to the step.
Method toList()
Convert the object to a list. This function is mainly used
by the Services to convert the objects to lists and then
call the web API.
Method clone()
The objects of this class are cloneable with this method.
Arguments
deep
Whether to make a deep clone.
Examples
if (FALSE) { # \dontrun{
Step$new(name = "DoThis", userGroupName = "Engineers")
} # }