Skip to content

Commit c23e27b

Browse files
committed
Generated java-async 2022-08-09 for Cloudauth-intl.
1 parent a36b88c commit c23e27b

File tree

4 files changed

+50
-1
lines changed

4 files changed

+50
-1
lines changed

cloudauth-intl-20220809/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-06-16 Version: 3.0.12
2+
- Generated java-async 2022-08-09 for Cloudauth-intl.
3+
14
2025-05-26 Version: 3.0.11
25
- Generated java-async 2022-08-09 for Cloudauth-intl.
36

cloudauth-intl-20220809/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0modelVersion>
44
<groupId>com.aliyungroupId>
55
<artifactId>alibabacloud-cloudauth_intl20220809artifactId>
6-
<version>3.0.11version>
6+
<version>3.0.12version>
77
<packaging>jarpackaging>
88
<name>alibabacloud-cloudauth_intl20220809name>
99
<description>Alibaba Cloud Cloudauth-intl (20220809) Async SDK for Java

cloudauth-intl-20220809/src/main/java/com/aliyun/sdk/service/cloudauth_intl20220809/models/DocOcrMaxRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ public class DocOcrMaxRequest extends Request {
2929
@com.aliyun.core.annotation.NameInMap("IdOcrPictureUrl")
3030
private String idOcrPictureUrl;
3131

32+
@com.aliyun.core.annotation.Body
33+
@com.aliyun.core.annotation.NameInMap("IdSpoof")
34+
private String idSpoof;
35+
3236
@com.aliyun.core.annotation.Body
3337
@com.aliyun.core.annotation.NameInMap("IdThreshold")
3438
private String idThreshold;
@@ -66,6 +70,7 @@ private DocOcrMaxRequest(Builder builder) {
6670
this.docType = builder.docType;
6771
this.idOcrPictureBase64 = builder.idOcrPictureBase64;
6872
this.idOcrPictureUrl = builder.idOcrPictureUrl;
73+
this.idSpoof = builder.idSpoof;
6974
this.idThreshold = builder.idThreshold;
7075
this.merchantBizId = builder.merchantBizId;
7176
this.merchantUserId = builder.merchantUserId;
@@ -110,6 +115,13 @@ public String getIdOcrPictureUrl() {
110115
return this.idOcrPictureUrl;
111116
}
112117

118+
/**
119+
* @return idSpoof
120+
*/
121+
public String getIdSpoof() {
122+
return this.idSpoof;
123+
}
124+
113125
/**
114126
* @return idThreshold
115127
*/
@@ -170,6 +182,7 @@ public static final class Builder extends Request.Builder
170182
private String docType;
171183
private String idOcrPictureBase64;
172184
private String idOcrPictureUrl;
185+
private String idSpoof;
173186
private String idThreshold;
174187
private String merchantBizId;
175188
private String merchantUserId;
@@ -188,6 +201,7 @@ private Builder(DocOcrMaxRequest request) {
188201
this.docType = request.docType;
189202
this.idOcrPictureBase64 = request.idOcrPictureBase64;
190203
this.idOcrPictureUrl = request.idOcrPictureUrl;
204+
this.idSpoof = request.idSpoof;
191205
this.idThreshold = request.idThreshold;
192206
this.merchantBizId = request.merchantBizId;
193207
this.merchantUserId = request.merchantUserId;
@@ -225,6 +239,15 @@ public Builder idOcrPictureUrl(String idOcrPictureUrl) {
225239
return this;
226240
}
227241

242+
/**
243+
* IdSpoof.
244+
*/
245+
public Builder idSpoof(String idSpoof) {
246+
this.putBodyParameter("IdSpoof", idSpoof);
247+
this.idSpoof = idSpoof;
248+
return this;
249+
}
250+
228251
/**
229252
* IdThreshold.
230253
*/

cloudauth-intl-20220809/src/main/java/com/aliyun/sdk/service/cloudauth_intl20220809/models/InitializeRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,10 @@ public class InitializeRequest extends Request {
117117
@com.aliyun.core.annotation.NameInMap("Ocr")
118118
private String ocr;
119119

120+
@com.aliyun.core.annotation.Query
121+
@com.aliyun.core.annotation.NameInMap("Pages")
122+
private String pages;
123+
120124
@com.aliyun.core.annotation.Query
121125
@com.aliyun.core.annotation.NameInMap("ProcedurePriority")
122126
private String procedurePriority;
@@ -188,6 +192,7 @@ private InitializeRequest(Builder builder) {
188192
this.metaInfo = builder.metaInfo;
189193
this.model = builder.model;
190194
this.ocr = builder.ocr;
195+
this.pages = builder.pages;
191196
this.procedurePriority = builder.procedurePriority;
192197
this.productCode = builder.productCode;
193198
this.productFlow = builder.productFlow;
@@ -389,6 +394,13 @@ public String getOcr() {
389394
return this.ocr;
390395
}
391396

397+
/**
398+
* @return pages
399+
*/
400+
public String getPages() {
401+
return this.pages;
402+
}
403+
392404
/**
393405
* @return procedurePriority
394406
*/
@@ -492,6 +504,7 @@ public static final class Builder extends Request.Builder
492504
private String metaInfo;
493505
private String model;
494506
private String ocr;
507+
private String pages;
495508
private String procedurePriority;
496509
private String productCode;
497510
private String productFlow;
@@ -535,6 +548,7 @@ private Builder(InitializeRequest request) {
535548
this.metaInfo = request.metaInfo;
536549
this.model = request.model;
537550
this.ocr = request.ocr;
551+
this.pages = request.pages;
538552
this.procedurePriority = request.procedurePriority;
539553
this.productCode = request.productCode;
540554
this.productFlow = request.productFlow;
@@ -779,6 +793,15 @@ public Builder ocr(String ocr) {
779793
return this;
780794
}
781795

796+
/**
797+
* Pages.
798+
*/
799+
public Builder pages(String pages) {
800+
this.putQueryParameter("Pages", pages);
801+
this.pages = pages;
802+
return this;
803+
}
804+
782805
/**
783806
* ProcedurePriority.
784807
*/

0 commit comments

Comments
 (0)