Skip to content

Commit e506e68

Browse files
committed
distrcit
1 parent 49ee116 commit e506e68

11 files changed

+618
-1
lines changed

aliyun-java-sdk-account-crm/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-10-24 Version: 3.38.6
2+
- distrcit
3+
14
2025-10-21 Version: 3.31.1
25
- distrcit
36

aliyun-java-sdk-account-crm/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-account-crm</artifactId>
66
<packaging>jar</packaging>
7-
<version>3.31.1</version>
7+
<version>3.38.6</version>
88
<name>aliyun-java-sdk-account-crm</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.account_crm.model.v20160606;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.ProtocolType;
19+
import com.aliyuncs.http.MethodType;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class DelCacheOperateSyncRequest extends RpcAcsRequest<DelCacheOperateSyncResponse> {
26+
27+
28+
private String key;
29+
public DelCacheOperateSyncRequest() {
30+
super("account-crm", "2016-06-06", "DelCacheOperateSync");
31+
setProtocol(ProtocolType.HTTPS);
32+
setMethod(MethodType.POST);
33+
}
34+
35+
public String getKey() {
36+
return this.key;
37+
}
38+
39+
public void setKey(String key) {
40+
this.key = key;
41+
if(key != null){
42+
putQueryParameter("Key", key);
43+
}
44+
}
45+
46+
@Override
47+
public Class<DelCacheOperateSyncResponse> getResponseClass() {
48+
return DelCacheOperateSyncResponse.class;
49+
}
50+
51+
}
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.account_crm.model.v20160606;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.account_crm.transform.v20160606.DelCacheOperateSyncResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class DelCacheOperateSyncResponse extends AcsResponse {
26+
27+
private String message;
28+
29+
private String data;
30+
31+
private String code;
32+
33+
private Boolean success;
34+
35+
private String requestId;
36+
37+
public String getMessage() {
38+
return this.message;
39+
}
40+
41+
public void setMessage(String message) {
42+
this.message = message;
43+
}
44+
45+
public String getData() {
46+
return this.data;
47+
}
48+
49+
public void setData(String data) {
50+
this.data = data;
51+
}
52+
53+
public String getCode() {
54+
return this.code;
55+
}
56+
57+
public void setCode(String code) {
58+
this.code = code;
59+
}
60+
61+
public Boolean getSuccess() {
62+
return this.success;
63+
}
64+
65+
public void setSuccess(Boolean success) {
66+
this.success = success;
67+
}
68+
69+
public String getRequestId() {
70+
return this.requestId;
71+
}
72+
73+
public void setRequestId(String requestId) {
74+
this.requestId = requestId;
75+
}
76+
77+
@Override
78+
public DelCacheOperateSyncResponse getInstance(UnmarshallerContext context) {
79+
return DelCacheOperateSyncResponseUnmarshaller.unmarshall(this, context);
80+
}
81+
82+
@Override
83+
public boolean checkShowJsonItemName() {
84+
return false;
85+
}
86+
}
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.account_crm.model.v20160606;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.ProtocolType;
19+
import com.aliyuncs.http.MethodType;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class IncrByCacheOperateSyncRequest extends RpcAcsRequest<IncrByCacheOperateSyncResponse> {
26+
27+
28+
private Integer expireSeconds;
29+
30+
private Integer defaultValue;
31+
32+
private Integer step;
33+
34+
private String key;
35+
public IncrByCacheOperateSyncRequest() {
36+
super("account-crm", "2016-06-06", "IncrByCacheOperateSync");
37+
setProtocol(ProtocolType.HTTPS);
38+
setMethod(MethodType.POST);
39+
}
40+
41+
public Integer getExpireSeconds() {
42+
return this.expireSeconds;
43+
}
44+
45+
public void setExpireSeconds(Integer expireSeconds) {
46+
this.expireSeconds = expireSeconds;
47+
if(expireSeconds != null){
48+
putQueryParameter("ExpireSeconds", expireSeconds.toString());
49+
}
50+
}
51+
52+
public Integer getDefaultValue() {
53+
return this.defaultValue;
54+
}
55+
56+
public void setDefaultValue(Integer defaultValue) {
57+
this.defaultValue = defaultValue;
58+
if(defaultValue != null){
59+
putQueryParameter("DefaultValue", defaultValue.toString());
60+
}
61+
}
62+
63+
public Integer getStep() {
64+
return this.step;
65+
}
66+
67+
public void setStep(Integer step) {
68+
this.step = step;
69+
if(step != null){
70+
putQueryParameter("Step", step.toString());
71+
}
72+
}
73+
74+
public String getKey() {
75+
return this.key;
76+
}
77+
78+
public void setKey(String key) {
79+
this.key = key;
80+
if(key != null){
81+
putQueryParameter("Key", key);
82+
}
83+
}
84+
85+
@Override
86+
public Class<IncrByCacheOperateSyncResponse> getResponseClass() {
87+
return IncrByCacheOperateSyncResponse.class;
88+
}
89+
90+
}
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.account_crm.model.v20160606;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.account_crm.transform.v20160606.IncrByCacheOperateSyncResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class IncrByCacheOperateSyncResponse extends AcsResponse {
26+
27+
private String message;
28+
29+
private String requestId;
30+
31+
private String data;
32+
33+
private String code;
34+
35+
private Boolean success;
36+
37+
public String getMessage() {
38+
return this.message;
39+
}
40+
41+
public void setMessage(String message) {
42+
this.message = message;
43+
}
44+
45+
public String getRequestId() {
46+
return this.requestId;
47+
}
48+
49+
public void setRequestId(String requestId) {
50+
this.requestId = requestId;
51+
}
52+
53+
public String getData() {
54+
return this.data;
55+
}
56+
57+
public void setData(String data) {
58+
this.data = data;
59+
}
60+
61+
public String getCode() {
62+
return this.code;
63+
}
64+
65+
public void setCode(String code) {
66+
this.code = code;
67+
}
68+
69+
public Boolean getSuccess() {
70+
return this.success;
71+
}
72+
73+
public void setSuccess(Boolean success) {
74+
this.success = success;
75+
}
76+
77+
@Override
78+
public IncrByCacheOperateSyncResponse getInstance(UnmarshallerContext context) {
79+
return IncrByCacheOperateSyncResponseUnmarshaller.unmarshall(this, context);
80+
}
81+
82+
@Override
83+
public boolean checkShowJsonItemName() {
84+
return false;
85+
}
86+
}

0 commit comments

Comments
 (0)