Skip to content

Commit c0bbb4e

Browse files
author
Api (Codebuild)
committed
Look for details in API documentation's changelog
1 parent 9a737ee commit c0bbb4e

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docs/EzsignfolderRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
1010
**fkiEzsignfoldertypeID** | **Integer** | The unique ID of the Ezsignfoldertype. |
1111
**fkiEzsigntsarequirementID** | **Integer** | The unique ID of the Ezsigntsarequirement. Determine if a Time Stamping Authority should add a timestamp on each of the signature. Valid values: |Value|Description| |-|-| |1|No. TSA Timestamping will requested. This will make all signatures a lot faster since no round-trip to the TSA server will be required. Timestamping will be made using eZsign server's time.| |2|Best effort. Timestamping from a Time Stamping Authority will be requested but is not mandatory. In the very improbable case it cannot be completed, the timestamping will be made using eZsign server's time. **Additional fee applies**| |3|Mandatory. Timestamping from a Time Stamping Authority will be requested and is mandatory. In the very improbable case it cannot be completed, the signature will fail and the user will be asked to retry. **Additional fee applies**| | [optional]
1212
**sEzsignfolderDescription** | **String** | The description of the Ezsignfolder |
13-
**tEzsignfolderNote** | **String** | Note about the Ezsignfolder |
13+
**tEzsignfolderNote** | **String** | Note about the Ezsignfolder | [optional]
1414
**eEzsignfolderSendreminderfrequency** | [**FieldEEzsignfolderSendreminderfrequency**](FieldEEzsignfolderSendreminderfrequency.md) | |
1515
**sEzsignfolderExternalid** | **String** | This field can be used to store an External ID from the client's system. Anything can be stored in this field, it will never be evaluated by the eZmax system and will be returned AS-IS. To store multiple values, consider using a JSON formatted structure, a URL encoded string, a CSV or any other custom format. | [optional]
1616

docs/EzsignfolderRequestCompound.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
1010
**fkiEzsignfoldertypeID** | **Integer** | The unique ID of the Ezsignfoldertype. |
1111
**fkiEzsigntsarequirementID** | **Integer** | The unique ID of the Ezsigntsarequirement. Determine if a Time Stamping Authority should add a timestamp on each of the signature. Valid values: |Value|Description| |-|-| |1|No. TSA Timestamping will requested. This will make all signatures a lot faster since no round-trip to the TSA server will be required. Timestamping will be made using eZsign server's time.| |2|Best effort. Timestamping from a Time Stamping Authority will be requested but is not mandatory. In the very improbable case it cannot be completed, the timestamping will be made using eZsign server's time. **Additional fee applies**| |3|Mandatory. Timestamping from a Time Stamping Authority will be requested and is mandatory. In the very improbable case it cannot be completed, the signature will fail and the user will be asked to retry. **Additional fee applies**| | [optional]
1212
**sEzsignfolderDescription** | **String** | The description of the Ezsignfolder |
13-
**tEzsignfolderNote** | **String** | Note about the Ezsignfolder |
13+
**tEzsignfolderNote** | **String** | Note about the Ezsignfolder | [optional]
1414
**eEzsignfolderSendreminderfrequency** | [**FieldEEzsignfolderSendreminderfrequency**](FieldEEzsignfolderSendreminderfrequency.md) | |
1515
**sEzsignfolderExternalid** | **String** | This field can be used to store an External ID from the client's system. Anything can be stored in this field, it will never be evaluated by the eZmax system and will be returned AS-IS. To store multiple values, consider using a JSON formatted structure, a URL encoded string, a CSV or any other custom format. | [optional]
1616

docs/EzsignfolderSendV3Request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
9-
**tEzsignfolderMessage** | **String** | A custom text message that will be added to the email sent. |
9+
**tEzsignfolderMessage** | **String** | A custom text message that will be added to the email sent. | [optional]
1010
**dtEzsignfolderDelayedsenddate** | **String** | The date and time at which the Ezsignfolder will be sent in the future. | [optional]
1111
**aFkiEzsignfoldersignerassociationID** | **List<Integer>** | |
1212

src/main/java/org/openapitools/client/model/EzsignfolderRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public void setSEzsignfolderDescription(String sEzsignfolderDescription) {
8888
/**
8989
* Note about the Ezsignfolder
9090
**/
91-
@ApiModelProperty(required = true, value = "Note about the Ezsignfolder")
91+
@ApiModelProperty(value = "Note about the Ezsignfolder")
9292
public String getTEzsignfolderNote() {
9393
return tEzsignfolderNote;
9494
}

src/main/java/org/openapitools/client/model/EzsignfolderRequestCompound.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public void setSEzsignfolderDescription(String sEzsignfolderDescription) {
8888
/**
8989
* Note about the Ezsignfolder
9090
**/
91-
@ApiModelProperty(required = true, value = "Note about the Ezsignfolder")
91+
@ApiModelProperty(value = "Note about the Ezsignfolder")
9292
public String getTEzsignfolderNote() {
9393
return tEzsignfolderNote;
9494
}

src/main/java/org/openapitools/client/model/EzsignfolderSendV3Request.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class EzsignfolderSendV3Request {
3232
/**
3333
* A custom text message that will be added to the email sent.
3434
**/
35-
@ApiModelProperty(required = true, value = "A custom text message that will be added to the email sent.")
35+
@ApiModelProperty(value = "A custom text message that will be added to the email sent.")
3636
public String getTEzsignfolderMessage() {
3737
return tEzsignfolderMessage;
3838
}

0 commit comments

Comments
 (0)