Skip to content
This repository was archived by the owner on Apr 14, 2024. It is now read-only.

Commit fa2849f

Browse files
Ian LordIan Lord
authored andcommitted
Look for details in API documentation's changelog
1 parent c7bfbd3 commit fa2849f

File tree

6 files changed

+51
-42
lines changed

6 files changed

+51
-42
lines changed

docs/CustomAutocompleteElementResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**sCategory** | **String** | The Category for the dropdown or an empty string if not categorized |
88
**sLabel** | **String** | The Description of the element |
9-
**mValue** | [**OneOfintegerstring**](OneOfintegerstring.md) | The Unique ID of the element |
9+
**mValue** | **String** | The Unique ID of the element |
1010

1111

docs/EzsignfolderListElement.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Name | Type | Description | Notes
1111
**sEzsignfolderDescription** | **String** | The description of the Ezsignfolder |
1212
**eEzsignfolderStep** | [**FieldEEzsignfolderStep**](FieldEEzsignfolderStep.md) | |
1313
**dtCreatedDate** | **String** | The date and time at which the object was created |
14-
**dtEzsignfolderSentdate** | [**OneOfstringobject**](OneOfstringobject.md) | |
15-
**dtDueDate** | [**OneOfstringobject**](OneOfstringobject.md) | The date at which no more signature will be accepted on the folder |
14+
**dtEzsignfolderSentdate** | **String** | The date and time at which the Ezsign folder was sent the last time. |
15+
**dtDueDate** | **String** | Represent a Date Time. The timezone is the one configured in the User's profile. |
1616
**iEzsigndocument** | **Number** | The total number of Ezsigndocument in the folder |
1717
**iEzsigndocumentEdm** | **Number** | The total number of Ezsigndocument in the folder that were saved in the edm system |
1818
**iEzsignsignature** | **Number** | The total number of signature blocks in all Ezsigndocuments in the folder |

docs/EzsigntemplatepackageListElement.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**pkiEzsigntemplatepackageID** | **Number** | The unique ID of the Ezsigntemplatepackage |
8-
**fkiDepartmentID** | [**OneOfintegerobject**](OneOfintegerobject.md) | |
9-
**fkiTeamID** | [**OneOfintegerobject**](OneOfintegerobject.md) | |
10-
**fkiEzsignfoldertypeID** | [**OneOfintegerobject**](OneOfintegerobject.md) | |
8+
**fkiDepartmentID** | **Number** | The unique ID of the Department. |
9+
**fkiTeamID** | **Number** | The unique ID of the Team |
10+
**fkiEzsignfoldertypeID** | **Number** | The unique ID of the Ezsignfoldertype. |
1111
**fkiLanguageID** | **Number** | The unique ID of the Language. Valid values: |Value|Description| |-|-| |1|French| |2|English| |
1212
**eEzsigntemplatepackageType** | [**FieldEEzsigntemplatepackageType**](FieldEEzsigntemplatepackageType.md) | |
1313
**sEzsigntemplatepackageDescription** | **String** | The description of the Ezsigntemplatepackage |

src/eZmaxAPI/model/CustomAutocompleteElementResponse.js

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*/
1313

1414
import ApiClient from '../ApiClient';
15-
import OneOfintegerstring from './OneOfintegerstring';
1615

1716
/**
1817
* The CustomAutocompleteElementResponse model module.
@@ -26,7 +25,7 @@ class CustomAutocompleteElementResponse {
2625
* @alias module:eZmaxAPI/model/CustomAutocompleteElementResponse
2726
* @param sCategory {String} The Category for the dropdown or an empty string if not categorized
2827
* @param sLabel {String} The Description of the element
29-
* @param mValue {module:eZmaxAPI/model/OneOfintegerstring} The Unique ID of the element
28+
* @param mValue {String} The Unique ID of the element
3029
*/
3130
constructor(sCategory, sLabel, mValue) {
3231

@@ -62,7 +61,7 @@ class CustomAutocompleteElementResponse {
6261
obj['sLabel'] = ApiClient.convertToType(data['sLabel'], 'String');
6362
}
6463
if (data.hasOwnProperty('mValue')) {
65-
obj['mValue'] = ApiClient.convertToType(data['mValue'], OneOfintegerstring);
64+
obj['mValue'] = ApiClient.convertToType(data['mValue'], 'String');
6665
}
6766
}
6867
return obj;
@@ -100,15 +99,15 @@ class CustomAutocompleteElementResponse {
10099
}
101100
/**
102101
* Returns The Unique ID of the element
103-
* @return {module:eZmaxAPI/model/OneOfintegerstring}
102+
* @return {String}
104103
*/
105104
getMValue() {
106105
return this.mValue;
107106
}
108107

109108
/**
110109
* Sets The Unique ID of the element
111-
* @param {module:eZmaxAPI/model/OneOfintegerstring} mValue The Unique ID of the element
110+
* @param {String} mValue The Unique ID of the element
112111
*/
113112
setMValue(mValue) {
114113
this['mValue'] = mValue;
@@ -130,7 +129,7 @@ CustomAutocompleteElementResponse.prototype['sLabel'] = undefined;
130129

131130
/**
132131
* The Unique ID of the element
133-
* @member {module:eZmaxAPI/model/OneOfintegerstring} mValue
132+
* @member {String} mValue
134133
*/
135134
CustomAutocompleteElementResponse.prototype['mValue'] = undefined;
136135

src/eZmaxAPI/model/EzsignfolderListElement.js

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
import ApiClient from '../ApiClient';
1515
import FieldEEzsignfolderStep from './FieldEEzsignfolderStep';
1616
import FieldEEzsignfoldertypePrivacylevel from './FieldEEzsignfoldertypePrivacylevel';
17-
import OneOfstringobject from './OneOfstringobject';
1817

1918
/**
2019
* The EzsignfolderListElement model module.
@@ -33,8 +32,8 @@ class EzsignfolderListElement {
3332
* @param sEzsignfolderDescription {String} The description of the Ezsignfolder
3433
* @param eEzsignfolderStep {module:eZmaxAPI/model/FieldEEzsignfolderStep}
3534
* @param dtCreatedDate {String} The date and time at which the object was created
36-
* @param dtEzsignfolderSentdate {module:eZmaxAPI/model/OneOfstringobject}
37-
* @param dtDueDate {module:eZmaxAPI/model/OneOfstringobject} The date at which no more signature will be accepted on the folder
35+
* @param dtEzsignfolderSentdate {String} The date and time at which the Ezsign folder was sent the last time.
36+
* @param dtDueDate {String} Represent a Date Time. The timezone is the one configured in the User's profile.
3837
* @param iEzsigndocument {Number} The total number of Ezsigndocument in the folder
3938
* @param iEzsigndocumentEdm {Number} The total number of Ezsigndocument in the folder that were saved in the edm system
4039
* @param iEzsignsignature {Number} The total number of signature blocks in all Ezsigndocuments in the folder
@@ -99,10 +98,10 @@ class EzsignfolderListElement {
9998
obj['dtCreatedDate'] = ApiClient.convertToType(data['dtCreatedDate'], 'String');
10099
}
101100
if (data.hasOwnProperty('dtEzsignfolderSentdate')) {
102-
obj['dtEzsignfolderSentdate'] = ApiClient.convertToType(data['dtEzsignfolderSentdate'], OneOfstringobject);
101+
obj['dtEzsignfolderSentdate'] = ApiClient.convertToType(data['dtEzsignfolderSentdate'], 'String');
103102
}
104103
if (data.hasOwnProperty('dtDueDate')) {
105-
obj['dtDueDate'] = ApiClient.convertToType(data['dtDueDate'], OneOfstringobject);
104+
obj['dtDueDate'] = ApiClient.convertToType(data['dtDueDate'], 'String');
106105
}
107106
if (data.hasOwnProperty('iEzsigndocument')) {
108107
obj['iEzsigndocument'] = ApiClient.convertToType(data['iEzsigndocument'], 'Number');
@@ -222,29 +221,31 @@ class EzsignfolderListElement {
222221
this['dtCreatedDate'] = dtCreatedDate;
223222
}
224223
/**
225-
* @return {module:eZmaxAPI/model/OneOfstringobject}
224+
* Returns The date and time at which the Ezsign folder was sent the last time.
225+
* @return {String}
226226
*/
227227
getDtEzsignfolderSentdate() {
228228
return this.dtEzsignfolderSentdate;
229229
}
230230

231231
/**
232-
* @param {module:eZmaxAPI/model/OneOfstringobject} dtEzsignfolderSentdate
232+
* Sets The date and time at which the Ezsign folder was sent the last time.
233+
* @param {String} dtEzsignfolderSentdate The date and time at which the Ezsign folder was sent the last time.
233234
*/
234235
setDtEzsignfolderSentdate(dtEzsignfolderSentdate) {
235236
this['dtEzsignfolderSentdate'] = dtEzsignfolderSentdate;
236237
}
237238
/**
238-
* Returns The date at which no more signature will be accepted on the folder
239-
* @return {module:eZmaxAPI/model/OneOfstringobject}
239+
* Returns Represent a Date Time. The timezone is the one configured in the User's profile.
240+
* @return {String}
240241
*/
241242
getDtDueDate() {
242243
return this.dtDueDate;
243244
}
244245

245246
/**
246-
* Sets The date at which no more signature will be accepted on the folder
247-
* @param {module:eZmaxAPI/model/OneOfstringobject} dtDueDate The date at which no more signature will be accepted on the folder
247+
* Sets Represent a Date Time. The timezone is the one configured in the User's profile.
248+
* @param {String} dtDueDate Represent a Date Time. The timezone is the one configured in the User's profile.
248249
*/
249250
setDtDueDate(dtDueDate) {
250251
this['dtDueDate'] = dtDueDate;
@@ -353,13 +354,14 @@ EzsignfolderListElement.prototype['eEzsignfolderStep'] = undefined;
353354
EzsignfolderListElement.prototype['dtCreatedDate'] = undefined;
354355

355356
/**
356-
* @member {module:eZmaxAPI/model/OneOfstringobject} dtEzsignfolderSentdate
357+
* The date and time at which the Ezsign folder was sent the last time.
358+
* @member {String} dtEzsignfolderSentdate
357359
*/
358360
EzsignfolderListElement.prototype['dtEzsignfolderSentdate'] = undefined;
359361

360362
/**
361-
* The date at which no more signature will be accepted on the folder
362-
* @member {module:eZmaxAPI/model/OneOfstringobject} dtDueDate
363+
* Represent a Date Time. The timezone is the one configured in the User's profile.
364+
* @member {String} dtDueDate
363365
*/
364366
EzsignfolderListElement.prototype['dtDueDate'] = undefined;
365367

src/eZmaxAPI/model/EzsigntemplatepackageListElement.js

Lines changed: 24 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
import ApiClient from '../ApiClient';
1515
import FieldEEzsigntemplatepackageType from './FieldEEzsigntemplatepackageType';
16-
import OneOfintegerobject from './OneOfintegerobject';
1716

1817
/**
1918
* The EzsigntemplatepackageListElement model module.
@@ -26,9 +25,9 @@ class EzsigntemplatepackageListElement {
2625
* An Ezsigntemplatepackage List Element
2726
* @alias module:eZmaxAPI/model/EzsigntemplatepackageListElement
2827
* @param pkiEzsigntemplatepackageID {Number} The unique ID of the Ezsigntemplatepackage
29-
* @param fkiDepartmentID {module:eZmaxAPI/model/OneOfintegerobject}
30-
* @param fkiTeamID {module:eZmaxAPI/model/OneOfintegerobject}
31-
* @param fkiEzsignfoldertypeID {module:eZmaxAPI/model/OneOfintegerobject}
28+
* @param fkiDepartmentID {Number} The unique ID of the Department.
29+
* @param fkiTeamID {Number} The unique ID of the Team
30+
* @param fkiEzsignfoldertypeID {Number} The unique ID of the Ezsignfoldertype.
3231
* @param fkiLanguageID {Number} The unique ID of the Language. Valid values: |Value|Description| |-|-| |1|French| |2|English|
3332
* @param eEzsigntemplatepackageType {module:eZmaxAPI/model/FieldEEzsigntemplatepackageType}
3433
* @param sEzsigntemplatepackageDescription {String} The description of the Ezsigntemplatepackage
@@ -72,13 +71,13 @@ class EzsigntemplatepackageListElement {
7271
obj['pkiEzsigntemplatepackageID'] = ApiClient.convertToType(data['pkiEzsigntemplatepackageID'], 'Number');
7372
}
7473
if (data.hasOwnProperty('fkiDepartmentID')) {
75-
obj['fkiDepartmentID'] = ApiClient.convertToType(data['fkiDepartmentID'], OneOfintegerobject);
74+
obj['fkiDepartmentID'] = ApiClient.convertToType(data['fkiDepartmentID'], 'Number');
7675
}
7776
if (data.hasOwnProperty('fkiTeamID')) {
78-
obj['fkiTeamID'] = ApiClient.convertToType(data['fkiTeamID'], OneOfintegerobject);
77+
obj['fkiTeamID'] = ApiClient.convertToType(data['fkiTeamID'], 'Number');
7978
}
8079
if (data.hasOwnProperty('fkiEzsignfoldertypeID')) {
81-
obj['fkiEzsignfoldertypeID'] = ApiClient.convertToType(data['fkiEzsignfoldertypeID'], OneOfintegerobject);
80+
obj['fkiEzsignfoldertypeID'] = ApiClient.convertToType(data['fkiEzsignfoldertypeID'], 'Number');
8281
}
8382
if (data.hasOwnProperty('fkiLanguageID')) {
8483
obj['fkiLanguageID'] = ApiClient.convertToType(data['fkiLanguageID'], 'Number');
@@ -115,40 +114,46 @@ class EzsigntemplatepackageListElement {
115114
this['pkiEzsigntemplatepackageID'] = pkiEzsigntemplatepackageID;
116115
}
117116
/**
118-
* @return {module:eZmaxAPI/model/OneOfintegerobject}
117+
* Returns The unique ID of the Department.
118+
* @return {Number}
119119
*/
120120
getFkiDepartmentID() {
121121
return this.fkiDepartmentID;
122122
}
123123

124124
/**
125-
* @param {module:eZmaxAPI/model/OneOfintegerobject} fkiDepartmentID
125+
* Sets The unique ID of the Department.
126+
* @param {Number} fkiDepartmentID The unique ID of the Department.
126127
*/
127128
setFkiDepartmentID(fkiDepartmentID) {
128129
this['fkiDepartmentID'] = fkiDepartmentID;
129130
}
130131
/**
131-
* @return {module:eZmaxAPI/model/OneOfintegerobject}
132+
* Returns The unique ID of the Team
133+
* @return {Number}
132134
*/
133135
getFkiTeamID() {
134136
return this.fkiTeamID;
135137
}
136138

137139
/**
138-
* @param {module:eZmaxAPI/model/OneOfintegerobject} fkiTeamID
140+
* Sets The unique ID of the Team
141+
* @param {Number} fkiTeamID The unique ID of the Team
139142
*/
140143
setFkiTeamID(fkiTeamID) {
141144
this['fkiTeamID'] = fkiTeamID;
142145
}
143146
/**
144-
* @return {module:eZmaxAPI/model/OneOfintegerobject}
147+
* Returns The unique ID of the Ezsignfoldertype.
148+
* @return {Number}
145149
*/
146150
getFkiEzsignfoldertypeID() {
147151
return this.fkiEzsignfoldertypeID;
148152
}
149153

150154
/**
151-
* @param {module:eZmaxAPI/model/OneOfintegerobject} fkiEzsignfoldertypeID
155+
* Sets The unique ID of the Ezsignfoldertype.
156+
* @param {Number} fkiEzsignfoldertypeID The unique ID of the Ezsignfoldertype.
152157
*/
153158
setFkiEzsignfoldertypeID(fkiEzsignfoldertypeID) {
154159
this['fkiEzsignfoldertypeID'] = fkiEzsignfoldertypeID;
@@ -238,17 +243,20 @@ class EzsigntemplatepackageListElement {
238243
EzsigntemplatepackageListElement.prototype['pkiEzsigntemplatepackageID'] = undefined;
239244

240245
/**
241-
* @member {module:eZmaxAPI/model/OneOfintegerobject} fkiDepartmentID
246+
* The unique ID of the Department.
247+
* @member {Number} fkiDepartmentID
242248
*/
243249
EzsigntemplatepackageListElement.prototype['fkiDepartmentID'] = undefined;
244250

245251
/**
246-
* @member {module:eZmaxAPI/model/OneOfintegerobject} fkiTeamID
252+
* The unique ID of the Team
253+
* @member {Number} fkiTeamID
247254
*/
248255
EzsigntemplatepackageListElement.prototype['fkiTeamID'] = undefined;
249256

250257
/**
251-
* @member {module:eZmaxAPI/model/OneOfintegerobject} fkiEzsignfoldertypeID
258+
* The unique ID of the Ezsignfoldertype.
259+
* @member {Number} fkiEzsignfoldertypeID
252260
*/
253261
EzsigntemplatepackageListElement.prototype['fkiEzsignfoldertypeID'] = undefined;
254262

0 commit comments

Comments
 (0)