();
private Long createdOn = null;
private Integer fontColor = null;
+ private Integer penColor = null;
+ private Integer penWidth = null;
+ private Integer penStyle = null;
private String fieldText = null;
private String fontFamily = null;
private Double fontSize = null;
@@ -71,6 +77,20 @@ public void setCreatorGuid(String creatorGuid) {
this.creatorGuid = creatorGuid;
}
+ public String getCreatorName() {
+ return creatorName;
+ }
+ public void setCreatorName(String creatorName) {
+ this.creatorName = creatorName;
+ }
+
+ public String getCreatorEmail() {
+ return creatorEmail;
+ }
+ public void setCreatorEmail(String creatorEmail) {
+ this.creatorEmail = creatorEmail;
+ }
+
public Rectangle getBox() {
return box;
}
@@ -78,6 +98,13 @@ public void setBox(Rectangle box) {
this.box = box;
}
+ public Integer getPageNumber() {
+ return pageNumber;
+ }
+ public void setPageNumber(Integer pageNumber) {
+ this.pageNumber = pageNumber;
+ }
+
public Point getAnnotationPosition() {
return annotationPosition;
}
@@ -134,6 +161,27 @@ public void setFontColor(Integer fontColor) {
this.fontColor = fontColor;
}
+ public Integer getPenColor() {
+ return penColor;
+ }
+ public void setPenColor(Integer penColor) {
+ this.penColor = penColor;
+ }
+
+ public Integer getPenWidth() {
+ return penWidth;
+ }
+ public void setPenWidth(Integer penWidth) {
+ this.penWidth = penWidth;
+ }
+
+ public Integer getPenStyle() {
+ return penStyle;
+ }
+ public void setPenStyle(Integer penStyle) {
+ this.penStyle = penStyle;
+ }
+
public String getFieldText() {
return fieldText;
}
@@ -163,7 +211,10 @@ public String toString() {
sb.append(" documentGuid: ").append(documentGuid).append("\n");
sb.append(" sessionGuid: ").append(sessionGuid).append("\n");
sb.append(" creatorGuid: ").append(creatorGuid).append("\n");
+ sb.append(" creatorName: ").append(creatorName).append("\n");
+ sb.append(" creatorEmail: ").append(creatorEmail).append("\n");
sb.append(" box: ").append(box).append("\n");
+ sb.append(" pageNumber: ").append(pageNumber).append("\n");
sb.append(" annotationPosition: ").append(annotationPosition).append("\n");
sb.append(" range: ").append(range).append("\n");
sb.append(" svgPath: ").append(svgPath).append("\n");
@@ -172,6 +223,9 @@ public String toString() {
sb.append(" replies: ").append(replies).append("\n");
sb.append(" createdOn: ").append(createdOn).append("\n");
sb.append(" fontColor: ").append(fontColor).append("\n");
+ sb.append(" penColor: ").append(penColor).append("\n");
+ sb.append(" penWidth: ").append(penWidth).append("\n");
+ sb.append(" penStyle: ").append(penStyle).append("\n");
sb.append(" fieldText: ").append(fieldText).append("\n");
sb.append(" fontFamily: ").append(fontFamily).append("\n");
sb.append(" fontSize: ").append(fontSize).append("\n");
diff --git a/src/main/java/com/groupdocs/sdk/model/AnnotationReplyInfo.java b/src/main/java/com/groupdocs/sdk/model/AnnotationReplyInfo.java
index a507139..5632760 100644
--- a/src/main/java/com/groupdocs/sdk/model/AnnotationReplyInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/AnnotationReplyInfo.java
@@ -25,9 +25,11 @@ public class AnnotationReplyInfo {
private String guid = null;
private String userGuid = null;
private String userName = null;
+ private String userEmail = null;
private String text = null;
private Long repliedOn = null;
private String parentReplyGuid = null;
+ private Boolean isAvatarExist = null;
public String getGuid() {
return guid;
}
@@ -49,6 +51,13 @@ public void setUserName(String userName) {
this.userName = userName;
}
+ public String getUserEmail() {
+ return userEmail;
+ }
+ public void setUserEmail(String userEmail) {
+ this.userEmail = userEmail;
+ }
+
public String getText() {
return text;
}
@@ -70,6 +79,13 @@ public void setParentReplyGuid(String parentReplyGuid) {
this.parentReplyGuid = parentReplyGuid;
}
+ public Boolean getIsAvatarExist() {
+ return isAvatarExist;
+ }
+ public void setIsAvatarExist(Boolean isAvatarExist) {
+ this.isAvatarExist = isAvatarExist;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -77,9 +93,11 @@ public String toString() {
sb.append(" guid: ").append(guid).append("\n");
sb.append(" userGuid: ").append(userGuid).append("\n");
sb.append(" userName: ").append(userName).append("\n");
+ sb.append(" userEmail: ").append(userEmail).append("\n");
sb.append(" text: ").append(text).append("\n");
sb.append(" repliedOn: ").append(repliedOn).append("\n");
sb.append(" parentReplyGuid: ").append(parentReplyGuid).append("\n");
+ sb.append(" isAvatarExist: ").append(isAvatarExist).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/AnnotationReviewerRights.java b/src/main/java/com/groupdocs/sdk/model/AnnotationReviewerRights.java
new file mode 100644
index 0000000..6b130ef
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/AnnotationReviewerRights.java
@@ -0,0 +1,87 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class AnnotationReviewerRights {
+ private Integer CanView = null;
+ private Integer CanAnnotate = null;
+ private Integer CanDownload = null;
+ private Integer CanExport = null;
+ private Integer CanDelete = null;
+ private Integer All = null;
+ public Integer getCanView() {
+ return CanView;
+ }
+ public void setCanView(Integer CanView) {
+ this.CanView = CanView;
+ }
+
+ public Integer getCanAnnotate() {
+ return CanAnnotate;
+ }
+ public void setCanAnnotate(Integer CanAnnotate) {
+ this.CanAnnotate = CanAnnotate;
+ }
+
+ public Integer getCanDownload() {
+ return CanDownload;
+ }
+ public void setCanDownload(Integer CanDownload) {
+ this.CanDownload = CanDownload;
+ }
+
+ public Integer getCanExport() {
+ return CanExport;
+ }
+ public void setCanExport(Integer CanExport) {
+ this.CanExport = CanExport;
+ }
+
+ public Integer getCanDelete() {
+ return CanDelete;
+ }
+ public void setCanDelete(Integer CanDelete) {
+ this.CanDelete = CanDelete;
+ }
+
+ public Integer getAll() {
+ return All;
+ }
+ public void setAll(Integer All) {
+ this.All = All;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class AnnotationReviewerRights {\n");
+ sb.append(" CanView: ").append(CanView).append("\n");
+ sb.append(" CanAnnotate: ").append(CanAnnotate).append("\n");
+ sb.append(" CanDownload: ").append(CanDownload).append("\n");
+ sb.append(" CanExport: ").append(CanExport).append("\n");
+ sb.append(" CanDelete: ").append(CanDelete).append("\n");
+ sb.append(" All: ").append(All).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/AnswerInfo.java b/src/main/java/com/groupdocs/sdk/model/AnswerInfo.java
index 26db59f..eb80965 100644
--- a/src/main/java/com/groupdocs/sdk/model/AnswerInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/AnswerInfo.java
@@ -24,6 +24,7 @@
public class AnswerInfo {
private String text = null;
private String value = null;
+ private Integer ordinal = null;
public String getText() {
return text;
}
@@ -38,12 +39,20 @@ public void setValue(String value) {
this.value = value;
}
+ public Integer getOrdinal() {
+ return ordinal;
+ }
+ public void setOrdinal(Integer ordinal) {
+ this.ordinal = ordinal;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AnswerInfo {\n");
sb.append(" text: ").append(text).append("\n");
sb.append(" value: ").append(value).append("\n");
+ sb.append(" ordinal: ").append(ordinal).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/CancelFileUploadResponse.java b/src/main/java/com/groupdocs/sdk/model/CancelFileUploadResponse.java
new file mode 100644
index 0000000..4c34cf1
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/CancelFileUploadResponse.java
@@ -0,0 +1,70 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import com.groupdocs.sdk.model.CancelFileUploadResult;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class CancelFileUploadResponse {
+ private CancelFileUploadResult result = null;
+ private String status = null;
+ private String error_message = null;
+ private Long composedOn = null;
+ public CancelFileUploadResult getResult() {
+ return result;
+ }
+ public void setResult(CancelFileUploadResult result) {
+ this.result = result;
+ }
+
+ public String getStatus() {
+ return status;
+ }
+ public void setStatus(String status) {
+ this.status = status;
+ }
+
+ public String getError_message() {
+ return error_message;
+ }
+ public void setError_message(String error_message) {
+ this.error_message = error_message;
+ }
+
+ public Long getComposedOn() {
+ return composedOn;
+ }
+ public void setComposedOn(Long composedOn) {
+ this.composedOn = composedOn;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class CancelFileUploadResponse {\n");
+ sb.append(" result: ").append(result).append("\n");
+ sb.append(" status: ").append(status).append("\n");
+ sb.append(" error_message: ").append(error_message).append("\n");
+ sb.append(" composedOn: ").append(composedOn).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/CancelFileUploadResult.java b/src/main/java/com/groupdocs/sdk/model/CancelFileUploadResult.java
new file mode 100644
index 0000000..4beef2c
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/CancelFileUploadResult.java
@@ -0,0 +1,33 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class CancelFileUploadResult {
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class CancelFileUploadResult {\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/ChangeInfo.java b/src/main/java/com/groupdocs/sdk/model/ChangeInfo.java
index 8b59afa..4e7fa3e 100644
--- a/src/main/java/com/groupdocs/sdk/model/ChangeInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/ChangeInfo.java
@@ -15,6 +15,8 @@
*/
package com.groupdocs.sdk.model;
+import java.util.*;
+import com.groupdocs.sdk.model.StyleChangeInfo;
import com.groupdocs.sdk.model.Rectangle;
import com.groupdocs.sdk.model.Page;
/**
@@ -24,16 +26,19 @@
*
*/
public class ChangeInfo {
- private Double id = null;
+ private Integer id = null;
private String type = null;
+ private String typeStr = null;
private String action = null;
+ private String actionStr = null;
private Page page = null;
private Rectangle box = null;
private String text = null;
- public Double getId() {
+ private List styleChanges = new ArrayList();
+ public Integer getId() {
return id;
}
- public void setId(Double id) {
+ public void setId(Integer id) {
this.id = id;
}
@@ -44,6 +49,13 @@ public void setType(String type) {
this.type = type;
}
+ public String getTypeStr() {
+ return typeStr;
+ }
+ public void setTypeStr(String typeStr) {
+ this.typeStr = typeStr;
+ }
+
public String getAction() {
return action;
}
@@ -51,6 +63,13 @@ public void setAction(String action) {
this.action = action;
}
+ public String getActionStr() {
+ return actionStr;
+ }
+ public void setActionStr(String actionStr) {
+ this.actionStr = actionStr;
+ }
+
public Page getPage() {
return page;
}
@@ -72,16 +91,26 @@ public void setText(String text) {
this.text = text;
}
+ public List getStyleChanges() {
+ return styleChanges;
+ }
+ public void setStyleChanges(List styleChanges) {
+ this.styleChanges = styleChanges;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ChangeInfo {\n");
sb.append(" id: ").append(id).append("\n");
sb.append(" type: ").append(type).append("\n");
+ sb.append(" typeStr: ").append(typeStr).append("\n");
sb.append(" action: ").append(action).append("\n");
+ sb.append(" actionStr: ").append(actionStr).append("\n");
sb.append(" page: ").append(page).append("\n");
sb.append(" box: ").append(box).append("\n");
sb.append(" text: ").append(text).append("\n");
+ sb.append(" styleChanges: ").append(styleChanges).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/ConditionInfo.java b/src/main/java/com/groupdocs/sdk/model/ConditionInfo.java
index 406f811..c4601d2 100644
--- a/src/main/java/com/groupdocs/sdk/model/ConditionInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/ConditionInfo.java
@@ -27,6 +27,7 @@ public class ConditionInfo {
private String answerId = null;
private String action = null;
private String operator = null;
+ private String operatorComparer = null;
public String getFieldId() {
return fieldId;
}
@@ -62,6 +63,13 @@ public void setOperator(String operator) {
this.operator = operator;
}
+ public String getOperatorComparer() {
+ return operatorComparer;
+ }
+ public void setOperatorComparer(String operatorComparer) {
+ this.operatorComparer = operatorComparer;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -71,6 +79,7 @@ public String toString() {
sb.append(" answerId: ").append(answerId).append("\n");
sb.append(" action: ").append(action).append("\n");
sb.append(" operator: ").append(operator).append("\n");
+ sb.append(" operatorComparer: ").append(operatorComparer).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/CreateAnnotationResult.java b/src/main/java/com/groupdocs/sdk/model/CreateAnnotationResult.java
index 0f8d780..d6e4ec5 100644
--- a/src/main/java/com/groupdocs/sdk/model/CreateAnnotationResult.java
+++ b/src/main/java/com/groupdocs/sdk/model/CreateAnnotationResult.java
@@ -22,17 +22,17 @@
*
*/
public class CreateAnnotationResult {
- private Double id = null;
+ private Long id = null;
private String annotationGuid = null;
private String replyGuid = null;
private String documentGuid = null;
private String sessionGuid = null;
private String access = null;
private Long serverTime = null;
- public Double getId() {
+ public Long getId() {
return id;
}
- public void setId(Double id) {
+ public void setId(Long id) {
this.id = id;
}
diff --git a/src/main/java/com/groupdocs/sdk/model/CreateQuestionnaireTemplateResponse.java b/src/main/java/com/groupdocs/sdk/model/CreateQuestionnaireTemplateResponse.java
new file mode 100644
index 0000000..d602867
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/CreateQuestionnaireTemplateResponse.java
@@ -0,0 +1,71 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import java.util.*;
+import com.groupdocs.sdk.model.TemplateField;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class CreateQuestionnaireTemplateResponse {
+ private List result = new ArrayList();
+ private String status = null;
+ private String error_message = null;
+ private Long composedOn = null;
+ public List getResult() {
+ return result;
+ }
+ public void setResult(List result) {
+ this.result = result;
+ }
+
+ public String getStatus() {
+ return status;
+ }
+ public void setStatus(String status) {
+ this.status = status;
+ }
+
+ public String getError_message() {
+ return error_message;
+ }
+ public void setError_message(String error_message) {
+ this.error_message = error_message;
+ }
+
+ public Long getComposedOn() {
+ return composedOn;
+ }
+ public void setComposedOn(Long composedOn) {
+ this.composedOn = composedOn;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class CreateQuestionnaireTemplateResponse {\n");
+ sb.append(" result: ").append(result).append("\n");
+ sb.append(" status: ").append(status).append("\n");
+ sb.append(" error_message: ").append(error_message).append("\n");
+ sb.append(" composedOn: ").append(composedOn).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteAccountUserResult.java b/src/main/java/com/groupdocs/sdk/model/DeleteAccountUserResult.java
index aaf60b0..766d793 100644
--- a/src/main/java/com/groupdocs/sdk/model/DeleteAccountUserResult.java
+++ b/src/main/java/com/groupdocs/sdk/model/DeleteAccountUserResult.java
@@ -22,13 +22,13 @@
*
*/
public class DeleteAccountUserResult {
- private Double id = null;
+ private Long id = null;
private String guid = null;
private String primary_email = null;
- public Double getId() {
+ public Long getId() {
return id;
}
- public void setId(Double id) {
+ public void setId(Long id) {
this.id = id;
}
diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteDatasourceListResponse.java b/src/main/java/com/groupdocs/sdk/model/DeleteDatasourceListResponse.java
new file mode 100644
index 0000000..4772ef4
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/DeleteDatasourceListResponse.java
@@ -0,0 +1,70 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import com.groupdocs.sdk.model.DeleteDatasourceListResult;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class DeleteDatasourceListResponse {
+ private DeleteDatasourceListResult result = null;
+ private String status = null;
+ private String error_message = null;
+ private Long composedOn = null;
+ public DeleteDatasourceListResult getResult() {
+ return result;
+ }
+ public void setResult(DeleteDatasourceListResult result) {
+ this.result = result;
+ }
+
+ public String getStatus() {
+ return status;
+ }
+ public void setStatus(String status) {
+ this.status = status;
+ }
+
+ public String getError_message() {
+ return error_message;
+ }
+ public void setError_message(String error_message) {
+ this.error_message = error_message;
+ }
+
+ public Long getComposedOn() {
+ return composedOn;
+ }
+ public void setComposedOn(Long composedOn) {
+ this.composedOn = composedOn;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class DeleteDatasourceListResponse {\n");
+ sb.append(" result: ").append(result).append("\n");
+ sb.append(" status: ").append(status).append("\n");
+ sb.append(" error_message: ").append(error_message).append("\n");
+ sb.append(" composedOn: ").append(composedOn).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteDatasourceListResult.java b/src/main/java/com/groupdocs/sdk/model/DeleteDatasourceListResult.java
new file mode 100644
index 0000000..469f35c
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/DeleteDatasourceListResult.java
@@ -0,0 +1,52 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import java.util.*;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class DeleteDatasourceListResult {
+ private List deletedItems = new ArrayList();
+ private List errors = new ArrayList();
+ public List getDeletedItems() {
+ return deletedItems;
+ }
+ public void setDeletedItems(List deletedItems) {
+ this.deletedItems = deletedItems;
+ }
+
+ public List getErrors() {
+ return errors;
+ }
+ public void setErrors(List errors) {
+ this.errors = errors;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class DeleteDatasourceListResult {\n");
+ sb.append(" deletedItems: ").append(deletedItems).append("\n");
+ sb.append(" errors: ").append(errors).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteDocumentAnnotationsReponse.java b/src/main/java/com/groupdocs/sdk/model/DeleteDocumentAnnotationsReponse.java
new file mode 100644
index 0000000..8011ec8
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/DeleteDocumentAnnotationsReponse.java
@@ -0,0 +1,70 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import com.groupdocs.sdk.model.DeleteDocumentAnnotationsResult;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class DeleteDocumentAnnotationsReponse {
+ private DeleteDocumentAnnotationsResult result = null;
+ private String status = null;
+ private String error_message = null;
+ private Long composedOn = null;
+ public DeleteDocumentAnnotationsResult getResult() {
+ return result;
+ }
+ public void setResult(DeleteDocumentAnnotationsResult result) {
+ this.result = result;
+ }
+
+ public String getStatus() {
+ return status;
+ }
+ public void setStatus(String status) {
+ this.status = status;
+ }
+
+ public String getError_message() {
+ return error_message;
+ }
+ public void setError_message(String error_message) {
+ this.error_message = error_message;
+ }
+
+ public Long getComposedOn() {
+ return composedOn;
+ }
+ public void setComposedOn(Long composedOn) {
+ this.composedOn = composedOn;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class DeleteDocumentAnnotationsReponse {\n");
+ sb.append(" result: ").append(result).append("\n");
+ sb.append(" status: ").append(status).append("\n");
+ sb.append(" error_message: ").append(error_message).append("\n");
+ sb.append(" composedOn: ").append(composedOn).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteDocumentAnnotationsResult.java b/src/main/java/com/groupdocs/sdk/model/DeleteDocumentAnnotationsResult.java
new file mode 100644
index 0000000..893e7aa
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/DeleteDocumentAnnotationsResult.java
@@ -0,0 +1,51 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class DeleteDocumentAnnotationsResult {
+ private Double id = null;
+ private String guid = null;
+ public Double getId() {
+ return id;
+ }
+ public void setId(Double id) {
+ this.id = id;
+ }
+
+ public String getGuid() {
+ return guid;
+ }
+ public void setGuid(String guid) {
+ this.guid = guid;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class DeleteDocumentAnnotationsResult {\n");
+ sb.append(" id: ").append(id).append("\n");
+ sb.append(" guid: ").append(guid).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireCollectorListResponse.java b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireCollectorListResponse.java
new file mode 100644
index 0000000..d6c44a0
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireCollectorListResponse.java
@@ -0,0 +1,70 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import com.groupdocs.sdk.model.DeleteQuestionnaireCollectorListResult;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class DeleteQuestionnaireCollectorListResponse {
+ private DeleteQuestionnaireCollectorListResult result = null;
+ private String status = null;
+ private String error_message = null;
+ private Long composedOn = null;
+ public DeleteQuestionnaireCollectorListResult getResult() {
+ return result;
+ }
+ public void setResult(DeleteQuestionnaireCollectorListResult result) {
+ this.result = result;
+ }
+
+ public String getStatus() {
+ return status;
+ }
+ public void setStatus(String status) {
+ this.status = status;
+ }
+
+ public String getError_message() {
+ return error_message;
+ }
+ public void setError_message(String error_message) {
+ this.error_message = error_message;
+ }
+
+ public Long getComposedOn() {
+ return composedOn;
+ }
+ public void setComposedOn(Long composedOn) {
+ this.composedOn = composedOn;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class DeleteQuestionnaireCollectorListResponse {\n");
+ sb.append(" result: ").append(result).append("\n");
+ sb.append(" status: ").append(status).append("\n");
+ sb.append(" error_message: ").append(error_message).append("\n");
+ sb.append(" composedOn: ").append(composedOn).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireCollectorListResult.java b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireCollectorListResult.java
new file mode 100644
index 0000000..1bab5fb
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireCollectorListResult.java
@@ -0,0 +1,52 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import java.util.*;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class DeleteQuestionnaireCollectorListResult {
+ private List deletedItems = new ArrayList();
+ private List errors = new ArrayList();
+ public List getDeletedItems() {
+ return deletedItems;
+ }
+ public void setDeletedItems(List deletedItems) {
+ this.deletedItems = deletedItems;
+ }
+
+ public List getErrors() {
+ return errors;
+ }
+ public void setErrors(List errors) {
+ this.errors = errors;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class DeleteQuestionnaireCollectorListResult {\n");
+ sb.append(" deletedItems: ").append(deletedItems).append("\n");
+ sb.append(" errors: ").append(errors).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireExecutionListResponse.java b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireExecutionListResponse.java
new file mode 100644
index 0000000..c40ff26
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireExecutionListResponse.java
@@ -0,0 +1,70 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import com.groupdocs.sdk.model.DeleteQuestionnaireExecutionListResult;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class DeleteQuestionnaireExecutionListResponse {
+ private DeleteQuestionnaireExecutionListResult result = null;
+ private String status = null;
+ private String error_message = null;
+ private Long composedOn = null;
+ public DeleteQuestionnaireExecutionListResult getResult() {
+ return result;
+ }
+ public void setResult(DeleteQuestionnaireExecutionListResult result) {
+ this.result = result;
+ }
+
+ public String getStatus() {
+ return status;
+ }
+ public void setStatus(String status) {
+ this.status = status;
+ }
+
+ public String getError_message() {
+ return error_message;
+ }
+ public void setError_message(String error_message) {
+ this.error_message = error_message;
+ }
+
+ public Long getComposedOn() {
+ return composedOn;
+ }
+ public void setComposedOn(Long composedOn) {
+ this.composedOn = composedOn;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class DeleteQuestionnaireExecutionListResponse {\n");
+ sb.append(" result: ").append(result).append("\n");
+ sb.append(" status: ").append(status).append("\n");
+ sb.append(" error_message: ").append(error_message).append("\n");
+ sb.append(" composedOn: ").append(composedOn).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireExecutionListResult.java b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireExecutionListResult.java
new file mode 100644
index 0000000..17cb2d3
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireExecutionListResult.java
@@ -0,0 +1,52 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import java.util.*;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class DeleteQuestionnaireExecutionListResult {
+ private List deletedItems = new ArrayList();
+ private List execution_id = new ArrayList();
+ public List getDeletedItems() {
+ return deletedItems;
+ }
+ public void setDeletedItems(List deletedItems) {
+ this.deletedItems = deletedItems;
+ }
+
+ public List getExecution_id() {
+ return execution_id;
+ }
+ public void setExecution_id(List execution_id) {
+ this.execution_id = execution_id;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class DeleteQuestionnaireExecutionListResult {\n");
+ sb.append(" deletedItems: ").append(deletedItems).append("\n");
+ sb.append(" execution_id: ").append(execution_id).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireListResponse.java b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireListResponse.java
new file mode 100644
index 0000000..fbf79e2
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireListResponse.java
@@ -0,0 +1,70 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import com.groupdocs.sdk.model.DeleteQuestionnaireListResult;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class DeleteQuestionnaireListResponse {
+ private DeleteQuestionnaireListResult result = null;
+ private String status = null;
+ private String error_message = null;
+ private Long composedOn = null;
+ public DeleteQuestionnaireListResult getResult() {
+ return result;
+ }
+ public void setResult(DeleteQuestionnaireListResult result) {
+ this.result = result;
+ }
+
+ public String getStatus() {
+ return status;
+ }
+ public void setStatus(String status) {
+ this.status = status;
+ }
+
+ public String getError_message() {
+ return error_message;
+ }
+ public void setError_message(String error_message) {
+ this.error_message = error_message;
+ }
+
+ public Long getComposedOn() {
+ return composedOn;
+ }
+ public void setComposedOn(Long composedOn) {
+ this.composedOn = composedOn;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class DeleteQuestionnaireListResponse {\n");
+ sb.append(" result: ").append(result).append("\n");
+ sb.append(" status: ").append(status).append("\n");
+ sb.append(" error_message: ").append(error_message).append("\n");
+ sb.append(" composedOn: ").append(composedOn).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireListResult.java b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireListResult.java
new file mode 100644
index 0000000..996f65d
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/DeleteQuestionnaireListResult.java
@@ -0,0 +1,52 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import java.util.*;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class DeleteQuestionnaireListResult {
+ private List questionnaires = new ArrayList();
+ private List errors = new ArrayList();
+ public List getQuestionnaires() {
+ return questionnaires;
+ }
+ public void setQuestionnaires(List questionnaires) {
+ this.questionnaires = questionnaires;
+ }
+
+ public List getErrors() {
+ return errors;
+ }
+ public void setErrors(List errors) {
+ this.errors = errors;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class DeleteQuestionnaireListResult {\n");
+ sb.append(" questionnaires: ").append(questionnaires).append("\n");
+ sb.append(" errors: ").append(errors).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/DeleteReplyResult.java b/src/main/java/com/groupdocs/sdk/model/DeleteReplyResult.java
index a594302..a4330d9 100644
--- a/src/main/java/com/groupdocs/sdk/model/DeleteReplyResult.java
+++ b/src/main/java/com/groupdocs/sdk/model/DeleteReplyResult.java
@@ -27,6 +27,7 @@ public class DeleteReplyResult {
private String replyGuid = null;
private String annotationGuid = null;
private List replies = new ArrayList();
+ private Long serverTime = null;
public String getReplyGuid() {
return replyGuid;
}
@@ -48,6 +49,13 @@ public void setReplies(List replies) {
this.replies = replies;
}
+ public Long getServerTime() {
+ return serverTime;
+ }
+ public void setServerTime(Long serverTime) {
+ this.serverTime = serverTime;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -55,6 +63,7 @@ public String toString() {
sb.append(" replyGuid: ").append(replyGuid).append("\n");
sb.append(" annotationGuid: ").append(annotationGuid).append("\n");
sb.append(" replies: ").append(replies).append("\n");
+ sb.append(" serverTime: ").append(serverTime).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/DocumentHyperlink.java b/src/main/java/com/groupdocs/sdk/model/DocumentHyperlink.java
new file mode 100644
index 0000000..30e7f33
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/DocumentHyperlink.java
@@ -0,0 +1,70 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import com.groupdocs.sdk.model.Rectangle;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class DocumentHyperlink {
+ private Integer page = null;
+ private Integer toPage = null;
+ private String url = null;
+ private Rectangle rect = null;
+ public Integer getPage() {
+ return page;
+ }
+ public void setPage(Integer page) {
+ this.page = page;
+ }
+
+ public Integer getToPage() {
+ return toPage;
+ }
+ public void setToPage(Integer toPage) {
+ this.toPage = toPage;
+ }
+
+ public String getUrl() {
+ return url;
+ }
+ public void setUrl(String url) {
+ this.url = url;
+ }
+
+ public Rectangle getRect() {
+ return rect;
+ }
+ public void setRect(Rectangle rect) {
+ this.rect = rect;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class DocumentHyperlink {\n");
+ sb.append(" page: ").append(page).append("\n");
+ sb.append(" toPage: ").append(toPage).append("\n");
+ sb.append(" url: ").append(url).append("\n");
+ sb.append(" rect: ").append(rect).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/GetDocumentQuestionnairesResult.java b/src/main/java/com/groupdocs/sdk/model/GetDocumentQuestionnairesResult.java
index 6ca96de..920b8ce 100644
--- a/src/main/java/com/groupdocs/sdk/model/GetDocumentQuestionnairesResult.java
+++ b/src/main/java/com/groupdocs/sdk/model/GetDocumentQuestionnairesResult.java
@@ -26,6 +26,7 @@
public class GetDocumentQuestionnairesResult {
private Double document_id = null;
private List questionnaires = new ArrayList();
+ private Integer totalCount = null;
public Double getDocument_id() {
return document_id;
}
@@ -40,12 +41,20 @@ public void setQuestionnaires(List questionnaires) {
this.questionnaires = questionnaires;
}
+ public Integer getTotalCount() {
+ return totalCount;
+ }
+ public void setTotalCount(Integer totalCount) {
+ this.totalCount = totalCount;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class GetDocumentQuestionnairesResult {\n");
sb.append(" document_id: ").append(document_id).append("\n");
sb.append(" questionnaires: ").append(questionnaires).append("\n");
+ sb.append(" totalCount: ").append(totalCount).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/GetHyperlinksResponse.java b/src/main/java/com/groupdocs/sdk/model/GetHyperlinksResponse.java
new file mode 100644
index 0000000..bda6493
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/GetHyperlinksResponse.java
@@ -0,0 +1,70 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import com.groupdocs.sdk.model.GetHyperlinksResult;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class GetHyperlinksResponse {
+ private GetHyperlinksResult result = null;
+ private String status = null;
+ private String error_message = null;
+ private Long composedOn = null;
+ public GetHyperlinksResult getResult() {
+ return result;
+ }
+ public void setResult(GetHyperlinksResult result) {
+ this.result = result;
+ }
+
+ public String getStatus() {
+ return status;
+ }
+ public void setStatus(String status) {
+ this.status = status;
+ }
+
+ public String getError_message() {
+ return error_message;
+ }
+ public void setError_message(String error_message) {
+ this.error_message = error_message;
+ }
+
+ public Long getComposedOn() {
+ return composedOn;
+ }
+ public void setComposedOn(Long composedOn) {
+ this.composedOn = composedOn;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class GetHyperlinksResponse {\n");
+ sb.append(" result: ").append(result).append("\n");
+ sb.append(" status: ").append(status).append("\n");
+ sb.append(" error_message: ").append(error_message).append("\n");
+ sb.append(" composedOn: ").append(composedOn).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/GetHyperlinksResult.java b/src/main/java/com/groupdocs/sdk/model/GetHyperlinksResult.java
new file mode 100644
index 0000000..d662f95
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/GetHyperlinksResult.java
@@ -0,0 +1,53 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import java.util.*;
+import com.groupdocs.sdk.model.DocumentHyperlink;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class GetHyperlinksResult {
+ private Double document_id = null;
+ private List links = new ArrayList();
+ public Double getDocument_id() {
+ return document_id;
+ }
+ public void setDocument_id(Double document_id) {
+ this.document_id = document_id;
+ }
+
+ public List getLinks() {
+ return links;
+ }
+ public void setLinks(List links) {
+ this.links = links;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class GetHyperlinksResult {\n");
+ sb.append(" document_id: ").append(document_id).append("\n");
+ sb.append(" links: ").append(links).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/GetQuestionnaireDocumentResponse.java b/src/main/java/com/groupdocs/sdk/model/GetQuestionnaireDocumentResponse.java
new file mode 100644
index 0000000..340a134
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/GetQuestionnaireDocumentResponse.java
@@ -0,0 +1,70 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import com.groupdocs.sdk.model.GetQuestionnaireDocumentResult;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class GetQuestionnaireDocumentResponse {
+ private GetQuestionnaireDocumentResult result = null;
+ private String status = null;
+ private String error_message = null;
+ private Long composedOn = null;
+ public GetQuestionnaireDocumentResult getResult() {
+ return result;
+ }
+ public void setResult(GetQuestionnaireDocumentResult result) {
+ this.result = result;
+ }
+
+ public String getStatus() {
+ return status;
+ }
+ public void setStatus(String status) {
+ this.status = status;
+ }
+
+ public String getError_message() {
+ return error_message;
+ }
+ public void setError_message(String error_message) {
+ this.error_message = error_message;
+ }
+
+ public Long getComposedOn() {
+ return composedOn;
+ }
+ public void setComposedOn(Long composedOn) {
+ this.composedOn = composedOn;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class GetQuestionnaireDocumentResponse {\n");
+ sb.append(" result: ").append(result).append("\n");
+ sb.append(" status: ").append(status).append("\n");
+ sb.append(" error_message: ").append(error_message).append("\n");
+ sb.append(" composedOn: ").append(composedOn).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/GetQuestionnaireDocumentResult.java b/src/main/java/com/groupdocs/sdk/model/GetQuestionnaireDocumentResult.java
new file mode 100644
index 0000000..c10ca28
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/GetQuestionnaireDocumentResult.java
@@ -0,0 +1,61 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import com.groupdocs.sdk.model.QuestionnaireInfo;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class GetQuestionnaireDocumentResult {
+ private Double document_id = null;
+ private String document_guid = null;
+ private QuestionnaireInfo questionnaire = null;
+ public Double getDocument_id() {
+ return document_id;
+ }
+ public void setDocument_id(Double document_id) {
+ this.document_id = document_id;
+ }
+
+ public String getDocument_guid() {
+ return document_guid;
+ }
+ public void setDocument_guid(String document_guid) {
+ this.document_guid = document_guid;
+ }
+
+ public QuestionnaireInfo getQuestionnaire() {
+ return questionnaire;
+ }
+ public void setQuestionnaire(QuestionnaireInfo questionnaire) {
+ this.questionnaire = questionnaire;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class GetQuestionnaireDocumentResult {\n");
+ sb.append(" document_id: ").append(document_id).append("\n");
+ sb.append(" document_guid: ").append(document_guid).append("\n");
+ sb.append(" questionnaire: ").append(questionnaire).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/GetQuestionnairesResult.java b/src/main/java/com/groupdocs/sdk/model/GetQuestionnairesResult.java
index 13ce838..52d9590 100644
--- a/src/main/java/com/groupdocs/sdk/model/GetQuestionnairesResult.java
+++ b/src/main/java/com/groupdocs/sdk/model/GetQuestionnairesResult.java
@@ -25,6 +25,7 @@
*/
public class GetQuestionnairesResult {
private List questionnaires = new ArrayList();
+ private Integer totalCount = null;
public List getQuestionnaires() {
return questionnaires;
}
@@ -32,11 +33,19 @@ public void setQuestionnaires(List questionnaires) {
this.questionnaires = questionnaires;
}
+ public Integer getTotalCount() {
+ return totalCount;
+ }
+ public void setTotalCount(Integer totalCount) {
+ this.totalCount = totalCount;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class GetQuestionnairesResult {\n");
sb.append(" questionnaires: ").append(questionnaires).append("\n");
+ sb.append(" totalCount: ").append(totalCount).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/GetSharedLinkAccessRightsResult.java b/src/main/java/com/groupdocs/sdk/model/GetSharedLinkAccessRightsResult.java
index 5f36e32..0b5242c 100644
--- a/src/main/java/com/groupdocs/sdk/model/GetSharedLinkAccessRightsResult.java
+++ b/src/main/java/com/groupdocs/sdk/model/GetSharedLinkAccessRightsResult.java
@@ -22,11 +22,11 @@
*
*/
public class GetSharedLinkAccessRightsResult {
- private Integer accessRights = null;
- public Integer getAccessRights() {
+ private String accessRights = null;
+ public String getAccessRights() {
return accessRights;
}
- public void setAccessRights(Integer accessRights) {
+ public void setAccessRights(String accessRights) {
this.accessRights = accessRights;
}
diff --git a/src/main/java/com/groupdocs/sdk/model/MarkerPosition.java b/src/main/java/com/groupdocs/sdk/model/MarkerPosition.java
new file mode 100644
index 0000000..53382de
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/MarkerPosition.java
@@ -0,0 +1,52 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import com.groupdocs.sdk.model.Point;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class MarkerPosition {
+ private Point position = null;
+ private Integer page = null;
+ public Point getPosition() {
+ return position;
+ }
+ public void setPosition(Point position) {
+ this.position = position;
+ }
+
+ public Integer getPage() {
+ return page;
+ }
+ public void setPage(Integer page) {
+ this.page = page;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class MarkerPosition {\n");
+ sb.append(" position: ").append(position).append("\n");
+ sb.append(" page: ").append(page).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/PublicSignatureSignDocumentSignerSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/PublicSignatureSignDocumentSignerSettingsInfo.java
index dd9ca4d..99946c9 100644
--- a/src/main/java/com/groupdocs/sdk/model/PublicSignatureSignDocumentSignerSettingsInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/PublicSignatureSignDocumentSignerSettingsInfo.java
@@ -15,6 +15,8 @@
*/
package com.groupdocs.sdk.model;
+import java.util.*;
+import com.groupdocs.sdk.model.SignatureDocumentFieldInfo;
/**
*
*
@@ -31,6 +33,7 @@ public class PublicSignatureSignDocumentSignerSettingsInfo {
private Double height = null;
private String placeSignatureOn = null;
private String data = null;
+ private List fields = new ArrayList();
public String getWaterMarkText() {
return waterMarkText;
}
@@ -94,6 +97,13 @@ public void setData(String data) {
this.data = data;
}
+ public List getFields() {
+ return fields;
+ }
+ public void setFields(List fields) {
+ this.fields = fields;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -107,6 +117,7 @@ public String toString() {
sb.append(" height: ").append(height).append("\n");
sb.append(" placeSignatureOn: ").append(placeSignatureOn).append("\n");
sb.append(" data: ").append(data).append("\n");
+ sb.append(" fields: ").append(fields).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/QuestionInfo.java b/src/main/java/com/groupdocs/sdk/model/QuestionInfo.java
index 86afe02..37a8f5b 100644
--- a/src/main/java/com/groupdocs/sdk/model/QuestionInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/QuestionInfo.java
@@ -17,6 +17,7 @@
import java.util.*;
import com.groupdocs.sdk.model.ConditionInfo;
+import com.groupdocs.sdk.model.Rectangle;
import com.groupdocs.sdk.model.AnswerInfo;
/**
*
@@ -33,6 +34,9 @@ public class QuestionInfo {
private String type = null;
private List answers = new ArrayList();
private List conditions = new ArrayList();
+ private List acceptableValues = new ArrayList();
+ private Integer max_length = null;
+ private Rectangle rect = null;
public String getField() {
return field;
}
@@ -89,6 +93,27 @@ public void setConditions(List conditions) {
this.conditions = conditions;
}
+ public List getAcceptableValues() {
+ return acceptableValues;
+ }
+ public void setAcceptableValues(List acceptableValues) {
+ this.acceptableValues = acceptableValues;
+ }
+
+ public Integer getMax_length() {
+ return max_length;
+ }
+ public void setMax_length(Integer max_length) {
+ this.max_length = max_length;
+ }
+
+ public Rectangle getRect() {
+ return rect;
+ }
+ public void setRect(Rectangle rect) {
+ this.rect = rect;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -101,6 +126,9 @@ public String toString() {
sb.append(" type: ").append(type).append("\n");
sb.append(" answers: ").append(answers).append("\n");
sb.append(" conditions: ").append(conditions).append("\n");
+ sb.append(" acceptableValues: ").append(acceptableValues).append("\n");
+ sb.append(" max_length: ").append(max_length).append("\n");
+ sb.append(" rect: ").append(rect).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/ReviewerInfo.java b/src/main/java/com/groupdocs/sdk/model/ReviewerInfo.java
index 9705fe4..b757404 100644
--- a/src/main/java/com/groupdocs/sdk/model/ReviewerInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/ReviewerInfo.java
@@ -15,6 +15,7 @@
*/
package com.groupdocs.sdk.model;
+import java.util.*;
/**
*
*
@@ -27,9 +28,10 @@ public class ReviewerInfo {
private String primary_email = null;
private String firstName = null;
private String lastName = null;
- private Integer access_rights = null;
+ private String access_rights = null;
private Integer color = null;
private String customEmailMessage = null;
+ private List avatar = new ArrayList();
public Double getId() {
return id;
}
@@ -65,10 +67,10 @@ public void setLastName(String lastName) {
this.lastName = lastName;
}
- public Integer getAccess_rights() {
+ public String getAccess_rights() {
return access_rights;
}
- public void setAccess_rights(Integer access_rights) {
+ public void setAccess_rights(String access_rights) {
this.access_rights = access_rights;
}
@@ -86,6 +88,13 @@ public void setCustomEmailMessage(String customEmailMessage) {
this.customEmailMessage = customEmailMessage;
}
+ public List getAvatar() {
+ return avatar;
+ }
+ public void setAvatar(List avatar) {
+ this.avatar = avatar;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -98,6 +107,7 @@ public String toString() {
sb.append(" access_rights: ").append(access_rights).append("\n");
sb.append(" color: ").append(color).append("\n");
sb.append(" customEmailMessage: ").append(customEmailMessage).append("\n");
+ sb.append(" avatar: ").append(avatar).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureDocumentFieldsResponse.java b/src/main/java/com/groupdocs/sdk/model/SignatureDocumentFieldsResponse.java
new file mode 100644
index 0000000..f74ff23
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/SignatureDocumentFieldsResponse.java
@@ -0,0 +1,70 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import com.groupdocs.sdk.model.SignatureDocumentFieldsResult;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class SignatureDocumentFieldsResponse {
+ private SignatureDocumentFieldsResult result = null;
+ private String status = null;
+ private String error_message = null;
+ private Long composedOn = null;
+ public SignatureDocumentFieldsResult getResult() {
+ return result;
+ }
+ public void setResult(SignatureDocumentFieldsResult result) {
+ this.result = result;
+ }
+
+ public String getStatus() {
+ return status;
+ }
+ public void setStatus(String status) {
+ this.status = status;
+ }
+
+ public String getError_message() {
+ return error_message;
+ }
+ public void setError_message(String error_message) {
+ this.error_message = error_message;
+ }
+
+ public Long getComposedOn() {
+ return composedOn;
+ }
+ public void setComposedOn(Long composedOn) {
+ this.composedOn = composedOn;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class SignatureDocumentFieldsResponse {\n");
+ sb.append(" result: ").append(result).append("\n");
+ sb.append(" status: ").append(status).append("\n");
+ sb.append(" error_message: ").append(error_message).append("\n");
+ sb.append(" composedOn: ").append(composedOn).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureDocumentFieldsResult.java b/src/main/java/com/groupdocs/sdk/model/SignatureDocumentFieldsResult.java
new file mode 100644
index 0000000..75feabe
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/SignatureDocumentFieldsResult.java
@@ -0,0 +1,53 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+import java.util.*;
+import com.groupdocs.sdk.model.SignatureDocumentFieldInfo;
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class SignatureDocumentFieldsResult {
+ private String documentId = null;
+ private List fields = new ArrayList();
+ public String getDocumentId() {
+ return documentId;
+ }
+ public void setDocumentId(String documentId) {
+ this.documentId = documentId;
+ }
+
+ public List getFields() {
+ return fields;
+ }
+ public void setFields(List fields) {
+ this.fields = fields;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class SignatureDocumentFieldsResult {\n");
+ sb.append(" documentId: ").append(documentId).append("\n");
+ sb.append(" fields: ").append(fields).append("\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldInfo.java
index bc70693..c859307 100644
--- a/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldInfo.java
@@ -41,6 +41,8 @@ public class SignatureEnvelopeFieldInfo {
private String defaultValue = null;
private String tooltip = null;
private String guidanceText = null;
+ private String groupName = null;
+ private String settings = null;
public String getId() {
return id;
}
@@ -160,6 +162,20 @@ public void setGuidanceText(String guidanceText) {
this.guidanceText = guidanceText;
}
+ public String getGroupName() {
+ return groupName;
+ }
+ public void setGroupName(String groupName) {
+ this.groupName = groupName;
+ }
+
+ public String getSettings() {
+ return settings;
+ }
+ public void setSettings(String settings) {
+ this.settings = settings;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -181,6 +197,8 @@ public String toString() {
sb.append(" defaultValue: ").append(defaultValue).append("\n");
sb.append(" tooltip: ").append(tooltip).append("\n");
sb.append(" guidanceText: ").append(guidanceText).append("\n");
+ sb.append(" groupName: ").append(groupName).append("\n");
+ sb.append(" settings: ").append(settings).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldLocationInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldLocationInfo.java
index d829c19..f558434 100644
--- a/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldLocationInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldLocationInfo.java
@@ -37,6 +37,7 @@ public class SignatureEnvelopeFieldLocationInfo {
private Boolean fontItalic = null;
private Boolean fontUnderline = null;
private Integer align = null;
+ private Integer order = null;
public String getId() {
return id;
}
@@ -142,6 +143,13 @@ public void setAlign(Integer align) {
this.align = align;
}
+ public Integer getOrder() {
+ return order;
+ }
+ public void setOrder(Integer order) {
+ this.order = order;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -161,6 +169,7 @@ public String toString() {
sb.append(" fontItalic: ").append(fontItalic).append("\n");
sb.append(" fontUnderline: ").append(fontUnderline).append("\n");
sb.append(" align: ").append(align).append("\n");
+ sb.append(" order: ").append(order).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldLocationSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldLocationSettingsInfo.java
index 5e02a52..eed764f 100644
--- a/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldLocationSettingsInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldLocationSettingsInfo.java
@@ -35,6 +35,8 @@ public class SignatureEnvelopeFieldLocationSettingsInfo {
private Boolean fontUnderline = null;
private Boolean forceNewField = null;
private Integer align = null;
+ private Integer pageWidth = null;
+ private Integer pageHeight = null;
public Integer getPage() {
return page;
}
@@ -126,6 +128,20 @@ public void setAlign(Integer align) {
this.align = align;
}
+ public Integer getPageWidth() {
+ return pageWidth;
+ }
+ public void setPageWidth(Integer pageWidth) {
+ this.pageWidth = pageWidth;
+ }
+
+ public Integer getPageHeight() {
+ return pageHeight;
+ }
+ public void setPageHeight(Integer pageHeight) {
+ this.pageHeight = pageHeight;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -143,6 +159,8 @@ public String toString() {
sb.append(" fontUnderline: ").append(fontUnderline).append("\n");
sb.append(" forceNewField: ").append(forceNewField).append("\n");
sb.append(" align: ").append(align).append("\n");
+ sb.append(" pageWidth: ").append(pageWidth).append("\n");
+ sb.append(" pageHeight: ").append(pageHeight).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldSettingsInfo.java
index 4e020d5..4896ef0 100644
--- a/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldSettingsInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/SignatureEnvelopeFieldSettingsInfo.java
@@ -43,6 +43,11 @@ public class SignatureEnvelopeFieldSettingsInfo {
private String tooltip = null;
private Integer align = null;
private String guidanceText = null;
+ private String groupName = null;
+ private Integer fieldType = null;
+ private String settings = null;
+ private Integer pageWidth = null;
+ private Integer pageHeight = null;
public String getName() {
return name;
}
@@ -190,6 +195,41 @@ public void setGuidanceText(String guidanceText) {
this.guidanceText = guidanceText;
}
+ public String getGroupName() {
+ return groupName;
+ }
+ public void setGroupName(String groupName) {
+ this.groupName = groupName;
+ }
+
+ public Integer getFieldType() {
+ return fieldType;
+ }
+ public void setFieldType(Integer fieldType) {
+ this.fieldType = fieldType;
+ }
+
+ public String getSettings() {
+ return settings;
+ }
+ public void setSettings(String settings) {
+ this.settings = settings;
+ }
+
+ public Integer getPageWidth() {
+ return pageWidth;
+ }
+ public void setPageWidth(Integer pageWidth) {
+ this.pageWidth = pageWidth;
+ }
+
+ public Integer getPageHeight() {
+ return pageHeight;
+ }
+ public void setPageHeight(Integer pageHeight) {
+ this.pageHeight = pageHeight;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -215,6 +255,11 @@ public String toString() {
sb.append(" tooltip: ").append(tooltip).append("\n");
sb.append(" align: ").append(align).append("\n");
sb.append(" guidanceText: ").append(guidanceText).append("\n");
+ sb.append(" groupName: ").append(groupName).append("\n");
+ sb.append(" fieldType: ").append(fieldType).append("\n");
+ sb.append(" settings: ").append(settings).append("\n");
+ sb.append(" pageWidth: ").append(pageWidth).append("\n");
+ sb.append(" pageHeight: ").append(pageHeight).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldInfo.java
index 8ac2904..9157f3e 100644
--- a/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldInfo.java
@@ -38,6 +38,8 @@ public class SignatureFormFieldInfo {
private String defaultValue = null;
private String tooltip = null;
private String guidanceText = null;
+ private String groupName = null;
+ private String settings = null;
public String getId() {
return id;
}
@@ -136,6 +138,20 @@ public void setGuidanceText(String guidanceText) {
this.guidanceText = guidanceText;
}
+ public String getGroupName() {
+ return groupName;
+ }
+ public void setGroupName(String groupName) {
+ this.groupName = groupName;
+ }
+
+ public String getSettings() {
+ return settings;
+ }
+ public void setSettings(String settings) {
+ this.settings = settings;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -154,6 +170,8 @@ public String toString() {
sb.append(" defaultValue: ").append(defaultValue).append("\n");
sb.append(" tooltip: ").append(tooltip).append("\n");
sb.append(" guidanceText: ").append(guidanceText).append("\n");
+ sb.append(" groupName: ").append(groupName).append("\n");
+ sb.append(" settings: ").append(settings).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldLocationInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldLocationInfo.java
index 25791d6..66ce460 100644
--- a/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldLocationInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldLocationInfo.java
@@ -37,6 +37,7 @@ public class SignatureFormFieldLocationInfo {
private Boolean fontItalic = null;
private Boolean fontUnderline = null;
private Integer align = null;
+ private Integer order = null;
public String getId() {
return id;
}
@@ -142,6 +143,13 @@ public void setAlign(Integer align) {
this.align = align;
}
+ public Integer getOrder() {
+ return order;
+ }
+ public void setOrder(Integer order) {
+ this.order = order;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -161,6 +169,7 @@ public String toString() {
sb.append(" fontItalic: ").append(fontItalic).append("\n");
sb.append(" fontUnderline: ").append(fontUnderline).append("\n");
sb.append(" align: ").append(align).append("\n");
+ sb.append(" order: ").append(order).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldLocationSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldLocationSettingsInfo.java
index 304c1ad..3bf64a2 100644
--- a/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldLocationSettingsInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldLocationSettingsInfo.java
@@ -35,6 +35,8 @@ public class SignatureFormFieldLocationSettingsInfo {
private Boolean fontUnderline = null;
private Boolean forceNewField = null;
private Integer align = null;
+ private Integer pageWidth = null;
+ private Integer pageHeight = null;
public Integer getPage() {
return page;
}
@@ -126,6 +128,20 @@ public void setAlign(Integer align) {
this.align = align;
}
+ public Integer getPageWidth() {
+ return pageWidth;
+ }
+ public void setPageWidth(Integer pageWidth) {
+ this.pageWidth = pageWidth;
+ }
+
+ public Integer getPageHeight() {
+ return pageHeight;
+ }
+ public void setPageHeight(Integer pageHeight) {
+ this.pageHeight = pageHeight;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -143,6 +159,8 @@ public String toString() {
sb.append(" fontUnderline: ").append(fontUnderline).append("\n");
sb.append(" forceNewField: ").append(forceNewField).append("\n");
sb.append(" align: ").append(align).append("\n");
+ sb.append(" pageWidth: ").append(pageWidth).append("\n");
+ sb.append(" pageHeight: ").append(pageHeight).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldSettingsInfo.java
index 7cc6a61..0eb0702 100644
--- a/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldSettingsInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/SignatureFormFieldSettingsInfo.java
@@ -43,6 +43,11 @@ public class SignatureFormFieldSettingsInfo {
private String tooltip = null;
private Integer align = null;
private String guidanceText = null;
+ private String groupName = null;
+ private Integer fieldType = null;
+ private String settings = null;
+ private Integer pageWidth = null;
+ private Integer pageHeight = null;
public String getName() {
return name;
}
@@ -190,6 +195,41 @@ public void setGuidanceText(String guidanceText) {
this.guidanceText = guidanceText;
}
+ public String getGroupName() {
+ return groupName;
+ }
+ public void setGroupName(String groupName) {
+ this.groupName = groupName;
+ }
+
+ public Integer getFieldType() {
+ return fieldType;
+ }
+ public void setFieldType(Integer fieldType) {
+ this.fieldType = fieldType;
+ }
+
+ public String getSettings() {
+ return settings;
+ }
+ public void setSettings(String settings) {
+ this.settings = settings;
+ }
+
+ public Integer getPageWidth() {
+ return pageWidth;
+ }
+ public void setPageWidth(Integer pageWidth) {
+ this.pageWidth = pageWidth;
+ }
+
+ public Integer getPageHeight() {
+ return pageHeight;
+ }
+ public void setPageHeight(Integer pageHeight) {
+ this.pageHeight = pageHeight;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -215,6 +255,11 @@ public String toString() {
sb.append(" tooltip: ").append(tooltip).append("\n");
sb.append(" align: ").append(align).append("\n");
sb.append(" guidanceText: ").append(guidanceText).append("\n");
+ sb.append(" groupName: ").append(groupName).append("\n");
+ sb.append(" fieldType: ").append(fieldType).append("\n");
+ sb.append(" settings: ").append(settings).append("\n");
+ sb.append(" pageWidth: ").append(pageWidth).append("\n");
+ sb.append(" pageHeight: ").append(pageHeight).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureFormInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureFormInfo.java
index f01ccaf..d513cd5 100644
--- a/src/main/java/com/groupdocs/sdk/model/SignatureFormInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/SignatureFormInfo.java
@@ -40,6 +40,8 @@ public class SignatureFormInfo {
private Double fieldsCount = null;
private Boolean notifyOwnerOnSign = null;
private Boolean attachSignedDocument = null;
+ private String notifyOtherOnSign = null;
+ private Boolean canParticipantPrintForm = null;
public String getId() {
return id;
}
@@ -159,6 +161,20 @@ public void setAttachSignedDocument(Boolean attachSignedDocument) {
this.attachSignedDocument = attachSignedDocument;
}
+ public String getNotifyOtherOnSign() {
+ return notifyOtherOnSign;
+ }
+ public void setNotifyOtherOnSign(String notifyOtherOnSign) {
+ this.notifyOtherOnSign = notifyOtherOnSign;
+ }
+
+ public Boolean getCanParticipantPrintForm() {
+ return canParticipantPrintForm;
+ }
+ public void setCanParticipantPrintForm(Boolean canParticipantPrintForm) {
+ this.canParticipantPrintForm = canParticipantPrintForm;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -180,6 +196,8 @@ public String toString() {
sb.append(" fieldsCount: ").append(fieldsCount).append("\n");
sb.append(" notifyOwnerOnSign: ").append(notifyOwnerOnSign).append("\n");
sb.append(" attachSignedDocument: ").append(attachSignedDocument).append("\n");
+ sb.append(" notifyOtherOnSign: ").append(notifyOtherOnSign).append("\n");
+ sb.append(" canParticipantPrintForm: ").append(canParticipantPrintForm).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureFormSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureFormSettingsInfo.java
index 92497f0..9c1fbb6 100644
--- a/src/main/java/com/groupdocs/sdk/model/SignatureFormSettingsInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/SignatureFormSettingsInfo.java
@@ -29,6 +29,8 @@ public class SignatureFormSettingsInfo {
private String waterMarkImage = null;
private Boolean notifyOwnerOnSign = null;
private Boolean attachSignedDocument = null;
+ private String notifyOtherOnSign = null;
+ private Boolean canParticipantPrintForm = null;
public String getName() {
return name;
}
@@ -78,6 +80,20 @@ public void setAttachSignedDocument(Boolean attachSignedDocument) {
this.attachSignedDocument = attachSignedDocument;
}
+ public String getNotifyOtherOnSign () {
+ return notifyOtherOnSign ;
+ }
+ public void setNotifyOtherOnSign (String notifyOtherOnSign ) {
+ this.notifyOtherOnSign = notifyOtherOnSign ;
+ }
+
+ public Boolean getCanParticipantPrintForm() {
+ return canParticipantPrintForm;
+ }
+ public void setCanParticipantPrintForm(Boolean canParticipantPrintForm) {
+ this.canParticipantPrintForm = canParticipantPrintForm;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -89,6 +105,8 @@ public String toString() {
sb.append(" waterMarkImage: ").append(waterMarkImage).append("\n");
sb.append(" notifyOwnerOnSign : ").append(notifyOwnerOnSign ).append("\n");
sb.append(" attachSignedDocument: ").append(attachSignedDocument).append("\n");
+ sb.append(" notifyOtherOnSign : ").append(notifyOtherOnSign ).append("\n");
+ sb.append(" canParticipantPrintForm: ").append(canParticipantPrintForm).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureSignDocumentSignerSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureSignDocumentSignerSettingsInfo.java
index 9824d09..350609f 100644
--- a/src/main/java/com/groupdocs/sdk/model/SignatureSignDocumentSignerSettingsInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/SignatureSignDocumentSignerSettingsInfo.java
@@ -15,6 +15,8 @@
*/
package com.groupdocs.sdk.model;
+import java.util.*;
+import com.groupdocs.sdk.model.SignatureFieldInfo;
/**
*
*
@@ -29,6 +31,7 @@ public class SignatureSignDocumentSignerSettingsInfo {
private Double height = null;
private String placeSignatureOn = null;
private String data = null;
+ private List fields = new ArrayList();
public String getName() {
return name;
}
@@ -78,6 +81,13 @@ public void setData(String data) {
this.data = data;
}
+ public List getFields() {
+ return fields;
+ }
+ public void setFields(List fields) {
+ this.fields = fields;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -89,6 +99,7 @@ public String toString() {
sb.append(" height: ").append(height).append("\n");
sb.append(" placeSignatureOn: ").append(placeSignatureOn).append("\n");
sb.append(" data: ").append(data).append("\n");
+ sb.append(" fields: ").append(fields).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldInfo.java
index 217ce51..ba6eb66 100644
--- a/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldInfo.java
@@ -38,6 +38,8 @@ public class SignatureTemplateFieldInfo {
private String defaultValue = null;
private String tooltip = null;
private String guidanceText = null;
+ private String groupName = null;
+ private String settings = null;
public String getId() {
return id;
}
@@ -136,6 +138,20 @@ public void setGuidanceText(String guidanceText) {
this.guidanceText = guidanceText;
}
+ public String getGroupName() {
+ return groupName;
+ }
+ public void setGroupName(String groupName) {
+ this.groupName = groupName;
+ }
+
+ public String getSettings() {
+ return settings;
+ }
+ public void setSettings(String settings) {
+ this.settings = settings;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -154,6 +170,8 @@ public String toString() {
sb.append(" defaultValue: ").append(defaultValue).append("\n");
sb.append(" tooltip: ").append(tooltip).append("\n");
sb.append(" guidanceText: ").append(guidanceText).append("\n");
+ sb.append(" groupName: ").append(groupName).append("\n");
+ sb.append(" settings: ").append(settings).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldLocationSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldLocationSettingsInfo.java
index d2db01d..5215394 100644
--- a/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldLocationSettingsInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldLocationSettingsInfo.java
@@ -35,6 +35,8 @@ public class SignatureTemplateFieldLocationSettingsInfo {
private Boolean fontUnderline = null;
private Boolean forceNewField = null;
private Integer align = null;
+ private Integer pageWidth = null;
+ private Integer pageHeight = null;
public Integer getPage() {
return page;
}
@@ -126,6 +128,20 @@ public void setAlign(Integer align) {
this.align = align;
}
+ public Integer getPageWidth() {
+ return pageWidth;
+ }
+ public void setPageWidth(Integer pageWidth) {
+ this.pageWidth = pageWidth;
+ }
+
+ public Integer getPageHeight() {
+ return pageHeight;
+ }
+ public void setPageHeight(Integer pageHeight) {
+ this.pageHeight = pageHeight;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -143,6 +159,8 @@ public String toString() {
sb.append(" fontUnderline: ").append(fontUnderline).append("\n");
sb.append(" forceNewField: ").append(forceNewField).append("\n");
sb.append(" align: ").append(align).append("\n");
+ sb.append(" pageWidth: ").append(pageWidth).append("\n");
+ sb.append(" pageHeight: ").append(pageHeight).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldSettingsInfo.java b/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldSettingsInfo.java
index a6ed674..670aa11 100644
--- a/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldSettingsInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/SignatureTemplateFieldSettingsInfo.java
@@ -43,6 +43,11 @@ public class SignatureTemplateFieldSettingsInfo {
private String tooltip = null;
private Integer align = null;
private String guidanceText = null;
+ private String groupName = null;
+ private Integer fieldType = null;
+ private String settings = null;
+ private Integer pageWidth = null;
+ private Integer pageHeight = null;
public String getName() {
return name;
}
@@ -190,6 +195,41 @@ public void setGuidanceText(String guidanceText) {
this.guidanceText = guidanceText;
}
+ public String getGroupName() {
+ return groupName;
+ }
+ public void setGroupName(String groupName) {
+ this.groupName = groupName;
+ }
+
+ public Integer getFieldType() {
+ return fieldType;
+ }
+ public void setFieldType(Integer fieldType) {
+ this.fieldType = fieldType;
+ }
+
+ public String getSettings() {
+ return settings;
+ }
+ public void setSettings(String settings) {
+ this.settings = settings;
+ }
+
+ public Integer getPageWidth() {
+ return pageWidth;
+ }
+ public void setPageWidth(Integer pageWidth) {
+ this.pageWidth = pageWidth;
+ }
+
+ public Integer getPageHeight() {
+ return pageHeight;
+ }
+ public void setPageHeight(Integer pageHeight) {
+ this.pageHeight = pageHeight;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -215,6 +255,11 @@ public String toString() {
sb.append(" tooltip: ").append(tooltip).append("\n");
sb.append(" align: ").append(align).append("\n");
sb.append(" guidanceText: ").append(guidanceText).append("\n");
+ sb.append(" groupName: ").append(groupName).append("\n");
+ sb.append(" fieldType: ").append(fieldType).append("\n");
+ sb.append(" settings: ").append(settings).append("\n");
+ sb.append(" pageWidth: ").append(pageWidth).append("\n");
+ sb.append(" pageHeight: ").append(pageHeight).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/StorageInfoResult.java b/src/main/java/com/groupdocs/sdk/model/StorageInfoResult.java
index b31c435..73cb98a 100644
--- a/src/main/java/com/groupdocs/sdk/model/StorageInfoResult.java
+++ b/src/main/java/com/groupdocs/sdk/model/StorageInfoResult.java
@@ -28,6 +28,7 @@ public class StorageInfoResult {
private Integer avail_credits = null;
private Integer total_documents = null;
private Long avail_documents = null;
+ private Long maxViewingFileSize = null;
public Long getTotal_space() {
return total_space;
}
@@ -70,6 +71,13 @@ public void setAvail_documents(Long avail_documents) {
this.avail_documents = avail_documents;
}
+ public Long getMaxViewingFileSize() {
+ return maxViewingFileSize;
+ }
+ public void setMaxViewingFileSize(Long maxViewingFileSize) {
+ this.maxViewingFileSize = maxViewingFileSize;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -80,6 +88,7 @@ public String toString() {
sb.append(" avail_credits: ").append(avail_credits).append("\n");
sb.append(" total_documents: ").append(total_documents).append("\n");
sb.append(" avail_documents: ").append(avail_documents).append("\n");
+ sb.append(" maxViewingFileSize: ").append(maxViewingFileSize).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/StyleChangeInfo.java b/src/main/java/com/groupdocs/sdk/model/StyleChangeInfo.java
new file mode 100644
index 0000000..6726a43
--- /dev/null
+++ b/src/main/java/com/groupdocs/sdk/model/StyleChangeInfo.java
@@ -0,0 +1,33 @@
+/**
+ * Copyright 2012 GroupDocs.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.groupdocs.sdk.model;
+
+/**
+ *
+ *
+ * NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
+ *
+ */
+public class StyleChangeInfo {
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class StyleChangeInfo {\n");
+ sb.append("}\n");
+ return sb.toString();
+ }
+}
+
diff --git a/src/main/java/com/groupdocs/sdk/model/TemplateField.java b/src/main/java/com/groupdocs/sdk/model/TemplateField.java
index d063533..c443535 100644
--- a/src/main/java/com/groupdocs/sdk/model/TemplateField.java
+++ b/src/main/java/com/groupdocs/sdk/model/TemplateField.java
@@ -15,6 +15,7 @@
*/
package com.groupdocs.sdk.model;
+import java.util.*;
import com.groupdocs.sdk.model.Rectangle;
/**
*
@@ -27,6 +28,10 @@ public class TemplateField {
private String name = null;
private String type = null;
private Rectangle rect = null;
+ private Integer maxlength = null;
+ private Boolean mandatory = null;
+ private String fieldtype = null;
+ private List acceptableValues = new ArrayList();
public Integer getPage() {
return page;
}
@@ -55,6 +60,34 @@ public void setRect(Rectangle rect) {
this.rect = rect;
}
+ public Integer getMaxlength() {
+ return maxlength;
+ }
+ public void setMaxlength(Integer maxlength) {
+ this.maxlength = maxlength;
+ }
+
+ public Boolean getMandatory() {
+ return mandatory;
+ }
+ public void setMandatory(Boolean mandatory) {
+ this.mandatory = mandatory;
+ }
+
+ public String getFieldtype() {
+ return fieldtype;
+ }
+ public void setFieldtype(String fieldtype) {
+ this.fieldtype = fieldtype;
+ }
+
+ public List getAcceptableValues() {
+ return acceptableValues;
+ }
+ public void setAcceptableValues(List acceptableValues) {
+ this.acceptableValues = acceptableValues;
+ }
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -63,6 +96,10 @@ public String toString() {
sb.append(" name: ").append(name).append("\n");
sb.append(" type: ").append(type).append("\n");
sb.append(" rect: ").append(rect).append("\n");
+ sb.append(" maxlength: ").append(maxlength).append("\n");
+ sb.append(" mandatory: ").append(mandatory).append("\n");
+ sb.append(" fieldtype: ").append(fieldtype).append("\n");
+ sb.append(" acceptableValues: ").append(acceptableValues).append("\n");
sb.append("}\n");
return sb.toString();
}
diff --git a/src/main/java/com/groupdocs/sdk/model/TemplateInfo.java b/src/main/java/com/groupdocs/sdk/model/TemplateInfo.java
index be870b4..f1e3919 100644
--- a/src/main/java/com/groupdocs/sdk/model/TemplateInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/TemplateInfo.java
@@ -24,6 +24,10 @@
public class TemplateInfo {
private String name = null;
private Integer field_count = null;
+ private Long size = null;
+ private String fileType = null;
+ private Integer dependent_questionnaires_count = null;
+ private Long upload_time = null;
private Double id = null;
private String guid = null;
public String getName() {
@@ -40,6 +44,34 @@ public void setField_count(Integer field_count) {
this.field_count = field_count;
}
+ public Long getSize() {
+ return size;
+ }
+ public void setSize(Long size) {
+ this.size = size;
+ }
+
+ public String getFileType() {
+ return fileType;
+ }
+ public void setFileType(String fileType) {
+ this.fileType = fileType;
+ }
+
+ public Integer getDependent_questionnaires_count() {
+ return dependent_questionnaires_count;
+ }
+ public void setDependent_questionnaires_count(Integer dependent_questionnaires_count) {
+ this.dependent_questionnaires_count = dependent_questionnaires_count;
+ }
+
+ public Long getUpload_time() {
+ return upload_time;
+ }
+ public void setUpload_time(Long upload_time) {
+ this.upload_time = upload_time;
+ }
+
public Double getId() {
return id;
}
@@ -60,6 +92,10 @@ public String toString() {
sb.append("class TemplateInfo {\n");
sb.append(" name: ").append(name).append("\n");
sb.append(" field_count: ").append(field_count).append("\n");
+ sb.append(" size: ").append(size).append("\n");
+ sb.append(" fileType: ").append(fileType).append("\n");
+ sb.append(" dependent_questionnaires_count: ").append(dependent_questionnaires_count).append("\n");
+ sb.append(" upload_time: ").append(upload_time).append("\n");
sb.append(" id: ").append(id).append("\n");
sb.append(" guid: ").append(guid).append("\n");
sb.append("}\n");
diff --git a/src/main/java/com/groupdocs/sdk/model/UpdateAccountUserResult.java b/src/main/java/com/groupdocs/sdk/model/UpdateAccountUserResult.java
index 56daed6..e7d1c70 100644
--- a/src/main/java/com/groupdocs/sdk/model/UpdateAccountUserResult.java
+++ b/src/main/java/com/groupdocs/sdk/model/UpdateAccountUserResult.java
@@ -22,13 +22,13 @@
*
*/
public class UpdateAccountUserResult {
- private Double id = null;
+ private Long id = null;
private String guid = null;
private String primary_email = null;
- public Double getId() {
+ public Long getId() {
return id;
}
- public void setId(Double id) {
+ public void setId(Long id) {
this.id = id;
}
diff --git a/src/main/java/com/groupdocs/sdk/model/UploadRequestResult.java b/src/main/java/com/groupdocs/sdk/model/UploadRequestResult.java
index 307f1da..30eb7db 100644
--- a/src/main/java/com/groupdocs/sdk/model/UploadRequestResult.java
+++ b/src/main/java/com/groupdocs/sdk/model/UploadRequestResult.java
@@ -30,6 +30,7 @@ public class UploadRequestResult {
private Integer version = null;
private Double view_job_id = null;
private String thumbnail = null;
+ private Long upload_time = null;
private Double id = null;
private String guid = null;
public String getAdj_name() {
@@ -88,6 +89,13 @@ public void setThumbnail(String thumbnail) {
this.thumbnail = thumbnail;
}
+ public Long getUpload_time() {
+ return upload_time;
+ }
+ public void setUpload_time(Long upload_time) {
+ this.upload_time = upload_time;
+ }
+
public Double getId() {
return id;
}
@@ -114,6 +122,7 @@ public String toString() {
sb.append(" version: ").append(version).append("\n");
sb.append(" view_job_id: ").append(view_job_id).append("\n");
sb.append(" thumbnail: ").append(thumbnail).append("\n");
+ sb.append(" upload_time: ").append(upload_time).append("\n");
sb.append(" id: ").append(id).append("\n");
sb.append(" guid: ").append(guid).append("\n");
sb.append("}\n");
diff --git a/src/main/java/com/groupdocs/sdk/model/UserIdentity.java b/src/main/java/com/groupdocs/sdk/model/UserIdentity.java
index 8319d4b..72c08da 100644
--- a/src/main/java/com/groupdocs/sdk/model/UserIdentity.java
+++ b/src/main/java/com/groupdocs/sdk/model/UserIdentity.java
@@ -22,13 +22,13 @@
*
*/
public class UserIdentity {
- private Double id = null;
+ private Long id = null;
private String guid = null;
private String primary_email = null;
- public Double getId() {
+ public Long getId() {
return id;
}
- public void setId(Double id) {
+ public void setId(Long id) {
this.id = id;
}
diff --git a/src/main/java/com/groupdocs/sdk/model/UserInfo.java b/src/main/java/com/groupdocs/sdk/model/UserInfo.java
index 1b72ca6..46d5225 100644
--- a/src/main/java/com/groupdocs/sdk/model/UserInfo.java
+++ b/src/main/java/com/groupdocs/sdk/model/UserInfo.java
@@ -39,6 +39,7 @@ public class UserInfo {
private Boolean alerts_eanbled = null;
private Boolean support_eanbled = null;
private String support_email = null;
+ private String apps = null;
private Boolean annotation_branded = null;
private Boolean viewer_branded = null;
private Boolean is_real_time_broadcast_enabled = null;
@@ -85,7 +86,20 @@ public class UserInfo {
private Integer webhook_notification_retries = null;
private String webhook_notification_failed_recipients = null;
private String signature_color = null;
- private Double id = null;
+ private Boolean signature_save_field_changes_automatically = null;
+ private Boolean signature_use_custom_email_templates = null;
+ private String signature_envelope_sent_owner_template = null;
+ private String signature_envelope_sent_other_template = null;
+ private String signature_envelope_completed_template = null;
+ private String signature_envelope_signed_template = null;
+ private String signature_envelope_declined_template = null;
+ private String signature_envelope_failed_template = null;
+ private String signature_envelope_cancelled_template = null;
+ private String signature_envelope_expired_template = null;
+ private String signature_envelope_step_expired_template = null;
+ private String signature_envelope_recipient_reminder_template = null;
+ private String signature_form_signed_template = null;
+ private Long id = null;
private String guid = null;
private String primary_email = null;
public String getNickname() {
@@ -193,6 +207,13 @@ public void setSupport_email(String support_email) {
this.support_email = support_email;
}
+ public String getApps() {
+ return apps;
+ }
+ public void setApps(String apps) {
+ this.apps = apps;
+ }
+
public Boolean getAnnotation_branded() {
return annotation_branded;
}
@@ -515,10 +536,101 @@ public void setSignature_color(String signature_color) {
this.signature_color = signature_color;
}
- public Double getId() {
+ public Boolean getSignature_save_field_changes_automatically() {
+ return signature_save_field_changes_automatically;
+ }
+ public void setSignature_save_field_changes_automatically(Boolean signature_save_field_changes_automatically) {
+ this.signature_save_field_changes_automatically = signature_save_field_changes_automatically;
+ }
+
+ public Boolean getSignature_use_custom_email_templates() {
+ return signature_use_custom_email_templates;
+ }
+ public void setSignature_use_custom_email_templates(Boolean signature_use_custom_email_templates) {
+ this.signature_use_custom_email_templates = signature_use_custom_email_templates;
+ }
+
+ public String getSignature_envelope_sent_owner_template() {
+ return signature_envelope_sent_owner_template;
+ }
+ public void setSignature_envelope_sent_owner_template(String signature_envelope_sent_owner_template) {
+ this.signature_envelope_sent_owner_template = signature_envelope_sent_owner_template;
+ }
+
+ public String getSignature_envelope_sent_other_template() {
+ return signature_envelope_sent_other_template;
+ }
+ public void setSignature_envelope_sent_other_template(String signature_envelope_sent_other_template) {
+ this.signature_envelope_sent_other_template = signature_envelope_sent_other_template;
+ }
+
+ public String getSignature_envelope_completed_template() {
+ return signature_envelope_completed_template;
+ }
+ public void setSignature_envelope_completed_template(String signature_envelope_completed_template) {
+ this.signature_envelope_completed_template = signature_envelope_completed_template;
+ }
+
+ public String getSignature_envelope_signed_template() {
+ return signature_envelope_signed_template;
+ }
+ public void setSignature_envelope_signed_template(String signature_envelope_signed_template) {
+ this.signature_envelope_signed_template = signature_envelope_signed_template;
+ }
+
+ public String getSignature_envelope_declined_template() {
+ return signature_envelope_declined_template;
+ }
+ public void setSignature_envelope_declined_template(String signature_envelope_declined_template) {
+ this.signature_envelope_declined_template = signature_envelope_declined_template;
+ }
+
+ public String getSignature_envelope_failed_template() {
+ return signature_envelope_failed_template;
+ }
+ public void setSignature_envelope_failed_template(String signature_envelope_failed_template) {
+ this.signature_envelope_failed_template = signature_envelope_failed_template;
+ }
+
+ public String getSignature_envelope_cancelled_template() {
+ return signature_envelope_cancelled_template;
+ }
+ public void setSignature_envelope_cancelled_template(String signature_envelope_cancelled_template) {
+ this.signature_envelope_cancelled_template = signature_envelope_cancelled_template;
+ }
+
+ public String getSignature_envelope_expired_template() {
+ return signature_envelope_expired_template;
+ }
+ public void setSignature_envelope_expired_template(String signature_envelope_expired_template) {
+ this.signature_envelope_expired_template = signature_envelope_expired_template;
+ }
+
+ public String getSignature_envelope_step_expired_template() {
+ return signature_envelope_step_expired_template;
+ }
+ public void setSignature_envelope_step_expired_template(String signature_envelope_step_expired_template) {
+ this.signature_envelope_step_expired_template = signature_envelope_step_expired_template;
+ }
+
+ public String getSignature_envelope_recipient_reminder_template() {
+ return signature_envelope_recipient_reminder_template;
+ }
+ public void setSignature_envelope_recipient_reminder_template(String signature_envelope_recipient_reminder_template) {
+ this.signature_envelope_recipient_reminder_template = signature_envelope_recipient_reminder_template;
+ }
+
+ public String getSignature_form_signed_template() {
+ return signature_form_signed_template;
+ }
+ public void setSignature_form_signed_template(String signature_form_signed_template) {
+ this.signature_form_signed_template = signature_form_signed_template;
+ }
+
+ public Long getId() {
return id;
}
- public void setId(Double id) {
+ public void setId(Long id) {
this.id = id;
}
@@ -555,6 +667,7 @@ public String toString() {
sb.append(" alerts_eanbled: ").append(alerts_eanbled).append("\n");
sb.append(" support_eanbled: ").append(support_eanbled).append("\n");
sb.append(" support_email: ").append(support_email).append("\n");
+ sb.append(" apps: ").append(apps).append("\n");
sb.append(" annotation_branded: ").append(annotation_branded).append("\n");
sb.append(" viewer_branded: ").append(viewer_branded).append("\n");
sb.append(" is_real_time_broadcast_enabled: ").append(is_real_time_broadcast_enabled).append("\n");
@@ -601,6 +714,19 @@ public String toString() {
sb.append(" webhook_notification_retries: ").append(webhook_notification_retries).append("\n");
sb.append(" webhook_notification_failed_recipients: ").append(webhook_notification_failed_recipients).append("\n");
sb.append(" signature_color: ").append(signature_color).append("\n");
+ sb.append(" signature_save_field_changes_automatically: ").append(signature_save_field_changes_automatically).append("\n");
+ sb.append(" signature_use_custom_email_templates: ").append(signature_use_custom_email_templates).append("\n");
+ sb.append(" signature_envelope_sent_owner_template: ").append(signature_envelope_sent_owner_template).append("\n");
+ sb.append(" signature_envelope_sent_other_template: ").append(signature_envelope_sent_other_template).append("\n");
+ sb.append(" signature_envelope_completed_template: ").append(signature_envelope_completed_template).append("\n");
+ sb.append(" signature_envelope_signed_template: ").append(signature_envelope_signed_template).append("\n");
+ sb.append(" signature_envelope_declined_template: ").append(signature_envelope_declined_template).append("\n");
+ sb.append(" signature_envelope_failed_template: ").append(signature_envelope_failed_template).append("\n");
+ sb.append(" signature_envelope_cancelled_template: ").append(signature_envelope_cancelled_template).append("\n");
+ sb.append(" signature_envelope_expired_template: ").append(signature_envelope_expired_template).append("\n");
+ sb.append(" signature_envelope_step_expired_template: ").append(signature_envelope_step_expired_template).append("\n");
+ sb.append(" signature_envelope_recipient_reminder_template: ").append(signature_envelope_recipient_reminder_template).append("\n");
+ sb.append(" signature_form_signed_template: ").append(signature_form_signed_template).append("\n");
sb.append(" id: ").append(id).append("\n");
sb.append(" guid: ").append(guid).append("\n");
sb.append(" primary_email: ").append(primary_email).append("\n");
diff --git a/src/main/java/com/groupdocs/sdk/model/ViewDocumentResult.java b/src/main/java/com/groupdocs/sdk/model/ViewDocumentResult.java
index bfc1394..d2eabfc 100644
--- a/src/main/java/com/groupdocs/sdk/model/ViewDocumentResult.java
+++ b/src/main/java/com/groupdocs/sdk/model/ViewDocumentResult.java
@@ -35,6 +35,9 @@ public class ViewDocumentResult {
private String pageHtml = null;
private String pageCss = null;
private String password = null;
+ private Boolean lic = null;
+ private String pdfPrintUrl = null;
+ private String htmlPrintUrl = null;
private Double id = null;
private String guid = null;
public String getName() {
@@ -114,6 +117,27 @@ public void setPassword(String password) {
this.password = password;
}
+ public Boolean getLic() {
+ return lic;
+ }
+ public void setLic(Boolean lic) {
+ this.lic = lic;
+ }
+
+ public String getPdfPrintUrl() {
+ return pdfPrintUrl;
+ }
+ public void setPdfPrintUrl(String pdfPrintUrl) {
+ this.pdfPrintUrl = pdfPrintUrl;
+ }
+
+ public String getHtmlPrintUrl() {
+ return htmlPrintUrl;
+ }
+ public void setHtmlPrintUrl(String htmlPrintUrl) {
+ this.htmlPrintUrl = htmlPrintUrl;
+ }
+
public Double getId() {
return id;
}
@@ -143,6 +167,9 @@ public String toString() {
sb.append(" pageHtml: ").append(pageHtml).append("\n");
sb.append(" pageCss: ").append(pageCss).append("\n");
sb.append(" password: ").append(password).append("\n");
+ sb.append(" lic: ").append(lic).append("\n");
+ sb.append(" pdfPrintUrl: ").append(pdfPrintUrl).append("\n");
+ sb.append(" htmlPrintUrl: ").append(htmlPrintUrl).append("\n");
sb.append(" id: ").append(id).append("\n");
sb.append(" guid: ").append(guid).append("\n");
sb.append("}\n");
diff --git a/src/test/java/com/groupdocs/sdk/api/AbstractUnitTest.java b/src/test/java/com/groupdocs/sdk/api/AbstractUnitTest.java
index 85a9ecd..c6015b8 100644
--- a/src/test/java/com/groupdocs/sdk/api/AbstractUnitTest.java
+++ b/src/test/java/com/groupdocs/sdk/api/AbstractUnitTest.java
@@ -46,7 +46,7 @@
import com.wordnik.swagger.core.util.JsonUtil;
public abstract class AbstractUnitTest {
- public static ObjectMapper jsonMapper = JsonUtil.getJsonMapper();
+ public static ObjectMapper jsonMapper = JsonUtil.mapper();
protected static String userId;
private static final Boolean enableLogging;
private static final SimpleDateFormat dateFormat = new SimpleDateFormat(ApiInvoker.DATE_FORMAT);
diff --git a/src/test/java/com/groupdocs/sdk/api/AntApiTest.java b/src/test/java/com/groupdocs/sdk/api/AntApiTest.java
index fab604f..7fa66e9 100644
--- a/src/test/java/com/groupdocs/sdk/api/AntApiTest.java
+++ b/src/test/java/com/groupdocs/sdk/api/AntApiTest.java
@@ -37,11 +37,14 @@
import com.groupdocs.sdk.common.ApiException;
import com.groupdocs.sdk.model.AddCollaboratorResponse;
+import com.groupdocs.sdk.model.DeleteDocumentAnnotationsReponse;
import com.groupdocs.sdk.model.SaveAnnotationTextResponse;
import com.groupdocs.sdk.model.AnnotationInfo;
import com.groupdocs.sdk.model.GetSharedLinkAccessRightsResponse;
import com.groupdocs.sdk.model.Point;
import com.groupdocs.sdk.model.GetReviewerContactsResponse;
+import com.groupdocs.sdk.model.MarkerPosition;
+import com.groupdocs.sdk.model.AnnotationReviewerRights;
import com.groupdocs.sdk.model.DeleteReplyResponse;
import com.groupdocs.sdk.model.DeleteAnnotationResponse;
import com.groupdocs.sdk.model.EditReplyResponse;
@@ -60,8 +63,8 @@
import com.groupdocs.sdk.model.GetCollaboratorsResponse;
import com.groupdocs.sdk.model.AnnotationReplyInfo;
import com.groupdocs.sdk.model.ListRepliesResponse;
-import com.groupdocs.sdk.model.TextFieldInfo;
import com.groupdocs.sdk.model.AddReplyResponse;
+import com.groupdocs.sdk.model.TextFieldInfo;
public class AntApiTest extends AbstractUnitTest {
@@ -162,6 +165,34 @@ public void testDeleteAnnotation() throws Exception {
}
+ @Test
+ public void testDeleteDocumentAnnotations() throws Exception {
+ // sample parameters
+ String userId = "userId";
+ String fileId = "fileId";
+
+ String resourcePath = "/ant/{userId}/files/{fileId}/annotations".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fileId" + "}", String.valueOf(fileId));
+
+ ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.DELETE).withHeader("Content-Type", MediaType.TEXT_HTML);
+ // add query parameters to expectation
+ mockRequest = mockRequest.withParam("signature", Pattern.compile(".*"));
+ // read response json from file
+ String responseBody = getSampleResponse("ant/DeleteDocumentAnnotations.json");
+
+ ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200);
+ driver.addExpectation(mockRequest, mockResponse);
+
+ try {
+ DeleteDocumentAnnotationsReponse response = api.DeleteDocumentAnnotations(userId, fileId);
+ // this ensures that json was successfully deserialized into corresponding model object
+ assertSameJson(responseBody, response);
+
+ } catch(ApiException e){
+ log(e.getCode() + ": " + e.getMessage());
+ }
+
+ }
+
@Test
public void testCreateAnnotationReply() throws Exception {
// sample parameters
@@ -541,7 +572,7 @@ public void testMoveAnnotationMarker() throws Exception {
// sample parameters
String userId = "userId";
String annotationId = "annotationId";
- Point body = getSampleRequest("ant/payload/MoveAnnotationMarker.json", new TypeReference(){});
+ MarkerPosition body = getSampleRequest("ant/payload/MoveAnnotationMarker.json", new TypeReference(){});
String resourcePath = "/ant/{userId}/annotations/{annotationId}/markerPosition".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "annotationId" + "}", String.valueOf(annotationId));
@@ -627,7 +658,7 @@ public void testSetSharedLinkAccessRights() throws Exception {
// sample parameters
String userId = "userId";
String fileId = "fileId";
- Integer body = 0;
+ AnnotationReviewerRights body = getSampleRequest("ant/payload/SetSharedLinkAccessRights.json", new TypeReference(){});
String resourcePath = "/ant/{userId}/files/{fileId}/sharedLinkAccessRights".replace("{" + "userId" + "}", String.valueOf(userId)).replace("{" + "fileId" + "}", String.valueOf(fileId));
diff --git a/src/test/java/com/groupdocs/sdk/api/AsyncApiTest.java b/src/test/java/com/groupdocs/sdk/api/AsyncApiTest.java
index a9ebc22..dc6c0b9 100644
--- a/src/test/java/com/groupdocs/sdk/api/AsyncApiTest.java
+++ b/src/test/java/com/groupdocs/sdk/api/AsyncApiTest.java
@@ -343,6 +343,9 @@ public void testGetJobs() throws Exception {
String statusIds = "statusIds";
String actions = "actions";
String excludedActions = "excludedActions";
+ String jobName = "jobName";
+ String orderBy = "orderBy";
+ Boolean orderAsc = Boolean.TRUE;
String resourcePath = "/async/{userId}/jobs".replace("{" + "userId" + "}", String.valueOf(userId));
@@ -354,6 +357,9 @@ public void testGetJobs() throws Exception {
mockRequest = mockRequest.withParam("statusIds", statusIds);
mockRequest = mockRequest.withParam("actions", actions);
mockRequest = mockRequest.withParam("excluded_actions", excludedActions);
+ mockRequest = mockRequest.withParam("jobName", jobName);
+ mockRequest = mockRequest.withParam("order_by", orderBy);
+ mockRequest = mockRequest.withParam("order_asc", orderAsc);
mockRequest = mockRequest.withParam("signature", Pattern.compile(".*"));
// read response json from file
String responseBody = getSampleResponse("async/GetJobs.json");
@@ -362,7 +368,7 @@ public void testGetJobs() throws Exception {
driver.addExpectation(mockRequest, mockResponse);
try {
- GetJobsResponse response = api.GetJobs(userId, pageIndex, pageSize, date, statusIds, actions, excludedActions);
+ GetJobsResponse response = api.GetJobs(userId, pageIndex, pageSize, date, statusIds, actions, excludedActions, jobName, orderBy, orderAsc);
// this ensures that json was successfully deserialized into corresponding model object
assertSameJson(responseBody, response);
diff --git a/src/test/java/com/groupdocs/sdk/api/ComparisonApiTest.java b/src/test/java/com/groupdocs/sdk/api/ComparisonApiTest.java
index d8fbff5..1afa89e 100644
--- a/src/test/java/com/groupdocs/sdk/api/ComparisonApiTest.java
+++ b/src/test/java/com/groupdocs/sdk/api/ComparisonApiTest.java
@@ -64,7 +64,7 @@ public void testCompare() throws Exception {
String targetFileId = "targetFileId";
String callbackUrl = "callbackUrl";
- String resourcePath = "/comparison/{userId}/comparison/compare".replace("{" + "userId" + "}", String.valueOf(userId));
+ String resourcePath = "/comparison/{userId}/compare".replace("{" + "userId" + "}", String.valueOf(userId));
ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML);
// add query parameters to expectation
@@ -90,25 +90,25 @@ public void testCompare() throws Exception {
}
@Test
- public void testGetChanges() throws Exception {
+ public void testGetDocumentDetails() throws Exception {
// sample parameters
String userId = "userId";
- String resultFileId = "resultFileId";
+ String guid = "guid";
- String resourcePath = "/comparison/{userId}/comparison/changes".replace("{" + "userId" + "}", String.valueOf(userId));
+ String resourcePath = "/comparison/{userId}/document".replace("{" + "userId" + "}", String.valueOf(userId));
ClientDriverRequest mockRequest = onRequestTo(resourcePath).withMethod(Method.GET).withHeader("Content-Type", MediaType.TEXT_HTML);
// add query parameters to expectation
- mockRequest = mockRequest.withParam("resultFileId", resultFileId);
+ mockRequest = mockRequest.withParam("guid", guid);
mockRequest = mockRequest.withParam("signature", Pattern.compile(".*"));
// read response json from file
- String responseBody = getSampleResponse("comparison/GetChanges.json");
+ String responseBody = getSampleResponse("comparison/GetDocumentDetails.json");
ClientDriverResponse mockResponse = giveResponse(responseBody).withStatus(200);
driver.addExpectation(mockRequest, mockResponse);
try {
- ChangesResponse response = api.GetChanges(userId, resultFileId);
+ DocumentDetailsResponse response = api.GetDocumentDetails(userId, guid);
// this ensures that json was successfully deserialized into corresponding model object
assertSameJson(responseBody, response);
@@ -119,28 +119,26 @@ public void testGetChanges() throws Exception {
}
@Test
- public void testUpdateChanges() throws Exception {
+ public void testDownloadResult() throws Exception {
// sample parameters
- String userId = "userId";
String resultFileId = "resultFileId";
- List body = getSampleRequest("comparison/payload/UpdateChanges.json", new TypeReference