Class AddWorkflowRequest

The AddWorkflowRequest class is a REST data model representing a request to add a workflow for moderation.

Inheritance
System.Object
AddWorkflowRequest
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.4
Syntax
public class AddWorkflowRequest

Constructors

AddWorkflowRequest()

Declaration
public AddWorkflowRequest()

Properties

Extension

Gets or sets the workflow extension data.

Declaration
public ExtensionRequest Extension { get; set; }
Property Value
Type Description
ExtensionRequest

InitialState

Gets or sets the start state for this workflow.

Declaration
public WorkflowStateRestModel InitialState { get; set; }
Property Value
Type Description
WorkflowStateRestModel

Name

Gets or sets the name for this workflow.

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String

Transitions

Gets or sets the collection of transitions comprising this workflow. Transitions describe the action require to move from one state to another within the workflow.

Declaration
public List<WorkflowTransitionRestModel> Transitions { get; set; }
Property Value
Type Description
System.Collections.Generic.List<WorkflowTransitionRestModel>
arrow_upward