Class AddWorkflowItemRequest

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

Inheritance
System.Object
AddWorkflowItemRequest
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 AddWorkflowItemRequest

Constructors

AddWorkflowItemRequest()

Declaration
public AddWorkflowItemRequest()

Properties

Extension

Gets or sets the workflow item extension data.

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

State

Gets or sets the state of this item within the associated workflow.

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

Target

Gets or sets the reference identifying the entity under moderation.

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

Token

Gets or sets the transition session token associated with the workflow item.

Declaration
public TransitionSessionTokenRequest Token { get; set; }
Property Value
Type Description
TransitionSessionTokenRequest

Workflow

Gets or sets the ID of the workflow with which this item is associated.

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