Skip to content

Commit 5aaa87a

Browse files
committed
Generated java-async 2025-02-27 for Agency.
1 parent 9a817ac commit 5aaa87a

20 files changed

+264
-36
lines changed

agency-20250227/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-03-27 Version: 1.0.1
2+
- Generated java-async 2025-02-27 for Agency.
3+
14
2025-03-05 Version: 1.0.0
25
- Generated java-async 2025-02-27 for Agency.
36

agency-20250227/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>alibabacloud-agency20250227</artifactId>
6-
<version>1.0.0</version>
6+
<version>1.0.1</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-agency20250227</name>
99
<description>Alibaba Cloud Agency (20250227) Async SDK for Java
@@ -76,7 +76,7 @@
7676
<plugin>
7777
<groupId>org.apache.maven.plugins</groupId>
7878
<artifactId>maven-gpg-plugin</artifactId>
79-
<version>1.6</version>
79+
<version>3.1.0</version>
8080
<executions>
8181
<execution>
8282
<id>sign-artifacts</id>

agency-20250227/src/main/java/com/aliyun/sdk/service/agency20250227/models/GetBillDetailFileListRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public static GetBillDetailFileListRequest create() {
3535
return builder().build();
3636
}
3737

38-
@Override
38+
@Override
3939
public Builder toBuilder() {
4040
return new Builder(this);
4141
}

agency-20250227/src/main/java/com/aliyun/sdk/service/agency20250227/models/GetBillDetailFileListResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static GetBillDetailFileListResponse create() {
3737
return new BuilderImpl().build();
3838
}
3939

40-
@Override
40+
@Override
4141
public Builder toBuilder() {
4242
return new BuilderImpl(this);
4343
}

agency-20250227/src/main/java/com/aliyun/sdk/service/agency20250227/models/GetBillDetailFileListResponseBody.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ public static GetBillDetailFileListResponseBody create() {
5252
return builder().build();
5353
}
5454

55+
public Builder toBuilder() {
56+
return new Builder(this);
57+
}
58+
5559
/**
5660
* @return code
5761
*/
@@ -102,6 +106,18 @@ public static final class Builder {
102106
private String requestId;
103107
private Boolean success;
104108

109+
private Builder() {
110+
}
111+
112+
private Builder(GetBillDetailFileListResponseBody model) {
113+
this.code = model.code;
114+
this.data = model.data;
115+
this.message = model.message;
116+
this.msg = model.msg;
117+
this.requestId = model.requestId;
118+
this.success = model.success;
119+
}
120+
105121
/**
106122
* Code.
107123
*/
@@ -227,6 +243,16 @@ public static final class Builder {
227243
private String fileUrl;
228244
private String type;
229245

246+
private Builder() {
247+
}
248+
249+
private Builder(Data model) {
250+
this.billMonth = model.billMonth;
251+
this.fileName = model.fileName;
252+
this.fileUrl = model.fileUrl;
253+
this.type = model.type;
254+
}
255+
230256
/**
231257
* BillMonth.
232258
*/

agency-20250227/src/main/java/com/aliyun/sdk/service/agency20250227/models/GetCommissionDetailFileListRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static GetCommissionDetailFileListRequest create() {
3434
return builder().build();
3535
}
3636

37-
@Override
37+
@Override
3838
public Builder toBuilder() {
3939
return new Builder(this);
4040
}

agency-20250227/src/main/java/com/aliyun/sdk/service/agency20250227/models/GetCommissionDetailFileListResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static GetCommissionDetailFileListResponse create() {
3737
return new BuilderImpl().build();
3838
}
3939

40-
@Override
40+
@Override
4141
public Builder toBuilder() {
4242
return new BuilderImpl(this);
4343
}

agency-20250227/src/main/java/com/aliyun/sdk/service/agency20250227/models/GetCommissionDetailFileListResponseBody.java

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ public static GetCommissionDetailFileListResponseBody create() {
4848
return builder().build();
4949
}
5050

51+
public Builder toBuilder() {
52+
return new Builder(this);
53+
}
54+
5155
/**
5256
* @return code
5357
*/
@@ -90,6 +94,17 @@ public static final class Builder {
9094
private String requestId;
9195
private Boolean success;
9296

97+
private Builder() {
98+
}
99+
100+
private Builder(GetCommissionDetailFileListResponseBody model) {
101+
this.code = model.code;
102+
this.data = model.data;
103+
this.message = model.message;
104+
this.requestId = model.requestId;
105+
this.success = model.success;
106+
}
107+
93108
/**
94109
* <p>code</p>
95110
*
@@ -198,6 +213,15 @@ public static final class Builder {
198213
private String fileType;
199214
private String fileUrl;
200215

216+
private Builder() {
217+
}
218+
219+
private Builder(FileList model) {
220+
this.commissionPolicyName = model.commissionPolicyName;
221+
this.fileType = model.fileType;
222+
this.fileUrl = model.fileUrl;
223+
}
224+
201225
/**
202226
* CommissionPolicyName.
203227
*/
@@ -285,6 +309,15 @@ public static final class Builder {
285309
private java.util.List<FileList> fileList;
286310
private String partnerUid;
287311

312+
private Builder() {
313+
}
314+
315+
private Builder(Data model) {
316+
this.billMonth = model.billMonth;
317+
this.fileList = model.fileList;
318+
this.partnerUid = model.partnerUid;
319+
}
320+
288321
/**
289322
* BillMonth.
290323
*/

agency-20250227/src/main/java/com/aliyun/sdk/service/agency20250227/models/GetCustomerOrderListRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public static GetCustomerOrderListRequest create() {
121121
return builder().build();
122122
}
123123

124-
@Override
124+
@Override
125125
public Builder toBuilder() {
126126
return new Builder(this);
127127
}

agency-20250227/src/main/java/com/aliyun/sdk/service/agency20250227/models/GetCustomerOrderListResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static GetCustomerOrderListResponse create() {
3737
return new BuilderImpl().build();
3838
}
3939

40-
@Override
40+
@Override
4141
public Builder toBuilder() {
4242
return new BuilderImpl(this);
4343
}

0 commit comments

Comments
 (0)