-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 2.21.1-RC1-v2-21.1.02.00 release (#196)
Co-authored-by: DevCenter-DocuSign <[email protected]>
- Loading branch information
1 parent
a016686
commit 79ac6b1
Showing
8 changed files
with
153 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
87 changes: 87 additions & 0 deletions
87
src/main/java/com/docusign/esign/model/EnvelopeFormDataPrefillFormData.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
package com.docusign.esign.model; | ||
|
||
import java.util.Objects; | ||
import java.util.Arrays; | ||
import com.docusign.esign.model.NameValue; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import com.fasterxml.jackson.annotation.JsonValue; | ||
import io.swagger.annotations.ApiModel; | ||
import io.swagger.annotations.ApiModelProperty; | ||
|
||
/** | ||
* EnvelopeFormDataPrefillFormData | ||
*/ | ||
|
||
public class EnvelopeFormDataPrefillFormData { | ||
@JsonProperty("formData") | ||
private java.util.List<NameValue> formData = null; | ||
|
||
public EnvelopeFormDataPrefillFormData formData(java.util.List<NameValue> formData) { | ||
this.formData = formData; | ||
return this; | ||
} | ||
|
||
public EnvelopeFormDataPrefillFormData addFormDataItem(NameValue formDataItem) { | ||
if (this.formData == null) { | ||
this.formData = new java.util.ArrayList<NameValue>(); | ||
} | ||
this.formData.add(formDataItem); | ||
return this; | ||
} | ||
|
||
/** | ||
* | ||
* @return formData | ||
**/ | ||
@ApiModelProperty(value = "") | ||
public java.util.List<NameValue> getFormData() { | ||
return formData; | ||
} | ||
|
||
public void setFormData(java.util.List<NameValue> formData) { | ||
this.formData = formData; | ||
} | ||
|
||
|
||
@Override | ||
public boolean equals(java.lang.Object o) { | ||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
EnvelopeFormDataPrefillFormData envelopeFormDataPrefillFormData = (EnvelopeFormDataPrefillFormData) o; | ||
return Objects.equals(this.formData, envelopeFormDataPrefillFormData.formData); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(formData); | ||
} | ||
|
||
|
||
@Override | ||
public String toString() { | ||
StringBuilder sb = new StringBuilder(); | ||
sb.append("class EnvelopeFormDataPrefillFormData {\n"); | ||
|
||
sb.append(" formData: ").append(toIndentedString(formData)).append("\n"); | ||
sb.append("}"); | ||
return sb.toString(); | ||
} | ||
|
||
/** | ||
* Convert the given object to string with each line indented by 4 spaces | ||
* (except the first line). | ||
*/ | ||
private String toIndentedString(java.lang.Object o) { | ||
if (o == null) { | ||
return "null"; | ||
} | ||
return o.toString().replace("\n", "\n "); | ||
} | ||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters