From 9a7422ea88b243f0b12ef3fc488cdeb0d19d4f70 Mon Sep 17 00:00:00 2001
From: Ivan Kamkin <234-Ivan.Kamkin@users.noreply.git.saltov.dynabic.com>
Date: Tue, 22 Apr 2025 15:49:09 +0500
Subject: [PATCH] Version updated
---
README.md | 6 +++---
pom.xml | 2 +-
snippets/dependency.xml | 2 +-
src/main/java/com/aspose/barcode/cloud/ApiClient.java | 4 ++--
.../com/aspose/barcode/cloud/model/BarcodeImageParams.java | 6 +++---
5 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/README.md b/README.md
index a508836..7dd0490 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
[](https://releases.aspose.cloud/java/repo/com/aspose/aspose-barcode-cloud/)
- API version: 4.0
-- SDK version: 25.3.0
+- SDK version: 25.4.0
## SDK and API Version Compatibility:
@@ -73,7 +73,7 @@ Add this dependency to your project's POM:
com.aspose
aspose-barcode-cloud
- 25.3.0
+ 25.4.0
compile
```
@@ -88,7 +88,7 @@ mvn clean package
Then manually install the following JARs:
-- `target/aspose-barcode-cloud-25.3.0.jar`
+- `target/aspose-barcode-cloud-25.4.0.jar`
- `target/lib/*.jar`
## Getting Started
diff --git a/pom.xml b/pom.xml
index 4b991b0..c270175 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
aspose-barcode-cloud
jar
aspose-barcode-cloud
- 25.3.0
+ 25.4.0
https://www.aspose.cloud
Aspose.BarCode Cloud SDK for Java
diff --git a/snippets/dependency.xml b/snippets/dependency.xml
index 499abf8..50899f4 100644
--- a/snippets/dependency.xml
+++ b/snippets/dependency.xml
@@ -11,7 +11,7 @@
com.aspose
aspose-barcode-cloud
- 25.3.0
+ 25.4.0
\ No newline at end of file
diff --git a/src/main/java/com/aspose/barcode/cloud/ApiClient.java b/src/main/java/com/aspose/barcode/cloud/ApiClient.java
index bba74ef..aac7158 100644
--- a/src/main/java/com/aspose/barcode/cloud/ApiClient.java
+++ b/src/main/java/com/aspose/barcode/cloud/ApiClient.java
@@ -40,7 +40,7 @@
/** ApiClient. */
public class ApiClient {
public final String apiVersion = "v4.0";
- public final String clientVersion = "25.3.0";
+ public final String clientVersion = "25.4.0";
private String baseUrl = "https://api.aspose.cloud";
private String tokenUrl = "https://id.aspose.cloud/connect/token";
@@ -88,7 +88,7 @@ protected ApiClient(long readTimeoutMillis) {
json = new JSON();
// Set default User-Agent.
- setUserAgent("OpenApi-Generator/25.3.0/java");
+ setUserAgent("OpenApi-Generator/25.4.0/java");
addDefaultHeader("x-aspose-client", "java sdk");
addDefaultHeader("x-aspose-client-version", clientVersion);
diff --git a/src/main/java/com/aspose/barcode/cloud/model/BarcodeImageParams.java b/src/main/java/com/aspose/barcode/cloud/model/BarcodeImageParams.java
index ef28ae0..70ed576 100644
--- a/src/main/java/com/aspose/barcode/cloud/model/BarcodeImageParams.java
+++ b/src/main/java/com/aspose/barcode/cloud/model/BarcodeImageParams.java
@@ -120,7 +120,7 @@ public void setUnits(GraphicsUnit units) {
*
* @return resolution
*/
- @ApiModelProperty(value = "resolution")
+ @ApiModelProperty(example = "96", value = "resolution")
public Float getResolution() {
return resolution;
}
@@ -134,7 +134,7 @@ public void setResolution(Float resolution) {
*
* @return imageHeight
*/
- @ApiModelProperty(value = "imageHeight")
+ @ApiModelProperty(example = "200", value = "imageHeight")
public Float getImageHeight() {
return imageHeight;
}
@@ -148,7 +148,7 @@ public void setImageHeight(Float imageHeight) {
*
* @return imageWidth
*/
- @ApiModelProperty(value = "imageWidth")
+ @ApiModelProperty(example = "200", value = "imageWidth")
public Float getImageWidth() {
return imageWidth;
}