Class WorkflowItemResponse

The WorkflowItemResponse class is a REST data model representing a moderation workflow in a response.

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

Constructors

WorkflowItemResponse()

Declaration
public WorkflowItemResponse()

Properties

Created

Gets or sets the date/time the workflow item was created.

Declaration
public DateTime Created { get; set; }
Property Value
Type Description
System.DateTime

Extension

Gets or sets the extension data for the workflow item.

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

Id

Gets or sets the Id for the workflow item.

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

State

Gets or sets the state of the workflow item.

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

Target

Gets or sets the target reference of the workflow item.

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

Workflow

Gets or sets the workflow Id for the workflow item.

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