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

com.docusign.maestro.model.ReplicationStatus 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;

/** The workflow replication status */
public enum ReplicationStatus {
  DEPLOY_REPLICATION_IN_PROGRESS("Deploy Replication In Progress"),

  DEPLOY_REPLICATED("Deploy Replicated"),

  DEPLOY_REPLICATION_FAILED("Deploy Replication Failed"),

  NOT_REPLICATED("Not Replicated"),

  DELETE_REPLICATION_IN_PROGRESS("Delete Replication in Progress"),

  DELETE_REPLICATED("Delete Replicated"),

  DELETE_REPLICATION_FAILED("Delete Replication Failed"),

  UNPUBLISH_REPLICATION_IN_PROGRESS("Unpublish replication in Progress"),

  UNPUBLISH_REPLICATED("Unpublish Replicated"),

  UNPUBLISH_REPLICATION_FAILED("Unpublish Replication Failed");

  private String value;

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy