![JAR search and dependency download from the Maven repository](/logo.png)
com.docusign.maestro.model.DSWorkflowDocGenDocOutputFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docusign-maestro-java Show documentation
Show all versions of docusign-maestro-java Show documentation
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.
package com.docusign.maestro.model;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
/** Gets or Sets DSWorkflowDocGenDocOutputFormat */
public enum DSWorkflowDocGenDocOutputFormat {
PDF("pdf"),
DOCX("docx");
private String value;
DSWorkflowDocGenDocOutputFormat(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static DSWorkflowDocGenDocOutputFormat fromValue(String value) {
for (DSWorkflowDocGenDocOutputFormat b : DSWorkflowDocGenDocOutputFormat.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy