Skip to content

Commit 1f3b900

Browse files
authored
Merge pull request #62 from aspose-pdf-cloud/develop
update to 23.7
2 parents 6594d84 + 0ab9c35 commit 1f3b900

File tree

5 files changed

+32
-8
lines changed

5 files changed

+32
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
2929
## Read PDF Formats
3030
MHT, PCL, PS, XSLFO, MD
3131

32-
## Enhancements in Version 23.6
33-
- Support to convert password protected PDF documents to PPTX.
32+
## Enhancements in Version 23.7
33+
- Form Field MappingName property support.
3434
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
3535

36-
## Bugs fixed in Version 23.6
37-
- Text Replacement API constantly hitting 504 Gateway Timeout.
36+
## Bugs fixed in Version 23.7
37+
- Adding Radio Button throws Internal Error.
3838

3939
## Requirements
4040
Building the API client library requires [Maven](https://maven.apache.org/) to be installed.

sdk/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ apply plugin: 'idea'
2020
apply plugin: 'eclipse'
2121

2222
group = 'com.aspose'
23-
version = '23.6.0'
23+
version = '23.7.0'
2424

2525
buildscript {
2626
repositories {
@@ -100,7 +100,7 @@ dependencies {
100100
publish {
101101
groupId = 'com.aspose'
102102
artifactId = 'aspose-cloud-pdf-android'
103-
publishVersion = '23.6.0'
103+
publishVersion = '23.7.0'
104104
desc = 'Aspose.PDF Cloud is a REST API for creating and editing PDF files. It can also be used to convert PDF files to different formats like DOC, HTML, XPS, TIFF and many more. Aspose.PDF Cloud gives you control: create PDFs from scratch or from HTML, XML, template, database, XPS or an image. Render PDFs to image formats such as JPEG, PNG, GIF, BMP, TIFF and many others. Aspose.PDF Cloud helps you manipulate elements of a PDF file like text, annotations, watermarks, signatures, bookmarks, stamps and so on. Its REST API also allows you to manage PDF pages by using features like merging, splitting, and inserting. Add images to a PDF file or convert PDF pages to images.'
105105
licences = ['MIT']
106106
website = 'https://products.aspose.cloud/pdf/cloud'

sdk/docs/Field.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Represents form field.
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**name** | **String** | Field name. | [optional]
9+
**mappingName** | **String** | Mapping name. | [optional]
910
**selectedItems** | **List<Integer>** | Selected items. | [optional]
1011
**type** | [**FieldType**](FieldType.md) | Field type. | [optional]
1112
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]

sdk/src/main/java/com/aspose/asposecloudpdfandroid/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public ApiClient() {
9292

9393
// Add custom headers
9494
addDefaultHeader("x-aspose-client", "android sdk");
95-
addDefaultHeader("x-aspose-client-version", "23.6.0");
95+
addDefaultHeader("x-aspose-client-version", "23.7.0");
9696

9797
// PDFCLOUD-418 Set default Connect Timeout
9898
setConnectTimeout(5 * 60 * 1000);

sdk/src/main/java/com/aspose/asposecloudpdfandroid/model/Field.java

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ public class Field extends LinkElement {
4747
@SerializedName("Name")
4848
private String name = null;
4949

50+
@SerializedName("MappingName")
51+
private String mappingName = null;
52+
5053
@SerializedName("SelectedItems")
5154
private List<Integer> selectedItems = null;
5255

@@ -77,6 +80,24 @@ public void setName(String name) {
7780
this.name = name;
7881
}
7982

83+
public Field mappingName(String mappingName) {
84+
this.mappingName = mappingName;
85+
return this;
86+
}
87+
88+
/**
89+
* Mapping name.
90+
* @return mappingName
91+
**/
92+
@ApiModelProperty(value = "Mapping name.")
93+
public String getMappingName() {
94+
return mappingName;
95+
}
96+
97+
public void setMappingName(String mappingName) {
98+
this.mappingName = mappingName;
99+
}
100+
80101
public Field selectedItems(List<Integer> selectedItems) {
81102
this.selectedItems = selectedItems;
82103
return this;
@@ -173,6 +194,7 @@ public boolean equals(java.lang.Object o) {
173194
}
174195
Field field = (Field) o;
175196
return Objects.equals(this.name, field.name) &&
197+
Objects.equals(this.mappingName, field.mappingName) &&
176198
Objects.equals(this.selectedItems, field.selectedItems) &&
177199
Objects.equals(this.type, field.type) &&
178200
Objects.equals(this.rect, field.rect) &&
@@ -182,7 +204,7 @@ public boolean equals(java.lang.Object o) {
182204

183205
@Override
184206
public int hashCode() {
185-
return Objects.hash(name, selectedItems, type, rect, values, super.hashCode());
207+
return Objects.hash(name, mappingName, selectedItems, type, rect, values, super.hashCode());
186208
}
187209

188210

@@ -192,6 +214,7 @@ public String toString() {
192214
sb.append("class Field {\n");
193215
sb.append(" ").append(toIndentedString(super.toString())).append("\n");
194216
sb.append(" name: ").append(toIndentedString(name)).append("\n");
217+
sb.append(" mappingName: ").append(toIndentedString(mappingName)).append("\n");
195218
sb.append(" selectedItems: ").append(toIndentedString(selectedItems)).append("\n");
196219
sb.append(" type: ").append(toIndentedString(type)).append("\n");
197220
sb.append(" rect: ").append(toIndentedString(rect)).append("\n");

0 commit comments

Comments
 (0)