Class WorkflowBase

java.lang.Object
com.microsoft.graph.identitygovernance.models.WorkflowBase
All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
Direct Known Subclasses:
Workflow, WorkflowVersion

public class WorkflowBase extends Object implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Workflow Base.
  • Field Details

    • oDataType

      @SerializedName("@odata.type") @Expose @Nullable public String oDataType
      the OData type of the object as returned by the service
    • category

      @SerializedName(value="category", alternate="Category") @Expose @Nullable public LifecycleWorkflowCategory category
      The Category. The category of the workflow. The possible values are: joiner, leaver, unknownFutureValue.
    • createdDateTime

      @SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTime
      The Created Date Time. When a workflow was created.
    • description

      @SerializedName(value="description", alternate="Description") @Expose @Nullable public String description
      The Description. A string that describes the purpose of the workflow.
    • displayName

      @SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayName
      The Display Name. A string to identify the workflow.
    • executionConditions

      @SerializedName(value="executionConditions", alternate="ExecutionConditions") @Expose @Nullable public WorkflowExecutionConditions executionConditions
      The Execution Conditions. Defines when and for who the workflow will run.
    • isEnabled

      @SerializedName(value="isEnabled", alternate="IsEnabled") @Expose @Nullable public Boolean isEnabled
      The Is Enabled. Whether the workflow is enabled or disabled. If this setting is true, the workflow can be run on demand or on schedule when isSchedulingEnabled is true.
    • isSchedulingEnabled

      @SerializedName(value="isSchedulingEnabled", alternate="IsSchedulingEnabled") @Expose @Nullable public Boolean isSchedulingEnabled
      The Is Scheduling Enabled. If true, the Lifecycle Workflow engine executes the workflow based on the schedule defined by tenant settings. Cannot be true for a disabled workflow (where isEnabled is false).
    • lastModifiedDateTime

      @SerializedName(value="lastModifiedDateTime", alternate="LastModifiedDateTime") @Expose @Nullable public OffsetDateTime lastModifiedDateTime
      The Last Modified Date Time. When the workflow was last modified.
    • createdBy

      @SerializedName(value="createdBy", alternate="CreatedBy") @Expose @Nullable public User createdBy
      The Created By. The user who created the workflow.
    • lastModifiedBy

      @SerializedName(value="lastModifiedBy", alternate="LastModifiedBy") @Expose @Nullable public User lastModifiedBy
      The Last Modified By. The unique identifier of the AAD identity that last modified the workflow.
    • tasks

      @SerializedName(value="tasks", alternate="Tasks") @Expose @Nullable public TaskCollectionPage tasks
      The Tasks. The tasks in the workflow.
  • Constructor Details

    • WorkflowBase

      public WorkflowBase()
  • Method Details

    • additionalDataManager

      @Nonnull public final com.microsoft.graph.serializer.AdditionalDataManager additionalDataManager()
      Specified by:
      additionalDataManager in interface com.microsoft.graph.serializer.IJsonBackedObject
    • setRawObject

      public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json)
      Sets the raw JSON object
      Specified by:
      setRawObject in interface com.microsoft.graph.serializer.IJsonBackedObject
      Parameters:
      serializer - the serializer
      json - the JSON object to set this object to