Class WorkflowTemplate
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.identitygovernance.models.WorkflowTemplate
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class WorkflowTemplate
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Workflow Template.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Category.The Description.The Display Name.The Execution Conditions.The Tasks. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
category
@SerializedName(value="category", alternate="Category") @Expose @Nullable public LifecycleWorkflowCategory categoryThe Category. The category of the workflow template. The possible values are: joiner, mover, leaver,unknownFutureValue.Supports $filter(eq, ne) and $orderby. -
description
@SerializedName(value="description", alternate="Description") @Expose @Nullable public String descriptionThe Description. The description of the workflowTemplate. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The display name of the workflowTemplate.Supports $filter(eq, ne) and $orderby. -
executionConditions
@SerializedName(value="executionConditions", alternate="ExecutionConditions") @Expose @Nullable public WorkflowExecutionConditions executionConditionsThe Execution Conditions. Conditions describing when to execute the workflow and the criteria to identify in-scope subject set. -
tasks
The Tasks. Represents the configured tasks to execute and their execution sequence within a workflow. This relationship is expanded by default.
-
-
Constructor Details
-
WorkflowTemplate
public WorkflowTemplate()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-