Class WorkflowTransitionRestModel
The WorkflowTransitionRestModel class is a REST data model representing a workflow transition.
Inheritance
System.Object
WorkflowTransitionRestModel
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Social.Moderation.Rest.Contracts
Assembly: EPiServer.Social.Moderation.Rest.Contracts.dll
Version: 1.5.4Syntax
public class WorkflowTransitionRestModel
Constructors
WorkflowTransitionRestModel()
Declaration
public WorkflowTransitionRestModel()
Properties
Action
Gets or sets the action which will advance a workflow from the origin state to the resulting state.
Declaration
public WorkflowActionRestModel Action { get; set; }
Property Value
| Type | Description |
|---|---|
| WorkflowActionRestModel |
From
Gets or sets the origin state for this transition.
Declaration
public WorkflowStateRestModel From { get; set; }
Property Value
| Type | Description |
|---|---|
| WorkflowStateRestModel |
To
Gets or sets the resulting state for this transition.
Declaration
public WorkflowStateRestModel To { get; set; }
Property Value
| Type | Description |
|---|---|
| WorkflowStateRestModel |