Until Activity Response
data class UntilActivityResponse(val activities: List<Any>, val dependsOn: List<ActivityDependencyResponse>? = null, val description: String? = null, val expression: ExpressionResponse, val name: String, val timeout: Any? = null, val type: String, val userProperties: List<UserPropertyResponse>? = null)
This activity executes inner activities until the specified boolean expression results to true or timeout is reached, whichever is earlier.
Constructors
Link copied to clipboard
fun UntilActivityResponse(activities: List<Any>, dependsOn: List<ActivityDependencyResponse>? = null, description: String? = null, expression: ExpressionResponse, name: String, timeout: Any? = null, type: String, userProperties: List<UserPropertyResponse>? = null)
Types
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Specifies the timeout for the activity to run. If there is no value specified, it takes the value of TimeSpan.FromDays(7) which is 1 week as default. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|(0-9)):(60|(0-9)). Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|(0-9)):(60|(0-9)).
Link copied to clipboard