All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.docusign.maestro.model.WorkflowMetadataStatus Maven / Gradle / Ivy

Go to download

The Docusign NuGet package makes integrating Docusign into your apps and websites a super fast and painless process. The library is open sourced on GitHub, look for the docusign-maestro-csharp-client repository.

There is a newer version: 2.0.0
Show newest version
package com.docusign.maestro.model;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;

/** Workflow Definition Metadata Status */
public enum WorkflowMetadataStatus {
  ACTIVE("active"),

  INACTIVE("inactive"),

  PUBLISHING("publishing"),

  UNPUBLISHING("unpublishing"),

  ARCHIVED("archived"),

  ARCHIVING("archiving");

  private String value;

  WorkflowMetadataStatus(String value) {
    this.value = value;
  }

  @JsonValue
  public String getValue() {
    return value;
  }

  @Override
  public String toString() {
    return String.valueOf(value);
  }

  @JsonCreator
  public static WorkflowMetadataStatus fromValue(String value) {
    for (WorkflowMetadataStatus b : WorkflowMetadataStatus.values()) {
      if (b.value.equals(value)) {
        return b;
      }
    }
    return null;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy