deleteTransitionDefinition

On this page
Back to index

Summary

Deletes a transition definition.
projectName
Stringrequired
The name for the project that must be unique among all projects.
workflowDefinitionName
Stringrequired
The name of the workflow definition.
transitionDefinitionName
Stringrequired
The name used for the transition.
stateDefinitionName
Stringrequired
The name used for the state definition.

Usage

Groovy

import com.electriccloud.client.groovy.ElectricFlow import com.electriccloud.client.groovy.models.* ElectricFlow ef = new ElectricFlow() def result = ef.deleteTransitionDefinition( projectName: "test-projectName", workflowDefinitionName: "test-workflowDefinitionName", transitionDefinitionName: "test-transitionDefinitionName", stateDefinitionName: "test-stateDefinitionName" )