Skip to content

Commit 4f4d571

Browse files
committed
CCC SDK Auto Released By yonghong.lyh,Version:1.0.13
发布日志: 1, Add new API.
1 parent 46f8e01 commit 4f4d571

228 files changed

Lines changed: 4308 additions & 562 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

aliyun-java-sdk-ccc/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-04-19 Version: 1.0.13
2+
1, Add new API.
3+
14
2019-01-04 Version: 1.0.12
25
1, Add new open API.
36

aliyun-java-sdk-ccc/pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-ccc</artifactId>
55
<packaging>jar</packaging>
6-
<version>1.0.12</version>
6+
<version>1.0.13</version>
77
<name>aliyun-java-sdk-ccc</name>
88
<url>http://www.aliyun.com</url>
99
<description>Aliyun Open API SDK for Java
@@ -31,8 +31,13 @@ http://www.aliyun.com</description>
3131
<groupId>com.aliyun</groupId>
3232
<artifactId>aliyun-java-sdk-core</artifactId>
3333
<optional>true</optional>
34-
<version>4.1.1</version>
34+
<version>[4.3.2,5.0.0)</version>
3535
</dependency>
36+
<dependency>
37+
<groupId>com.google.code.gson</groupId>
38+
<artifactId>gson</artifactId>
39+
<version>2.8.5</version>
40+
</dependency>
3641
</dependencies>
3742
<licenses>
3843
<license>
Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
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.ccc.model.v20170705;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import java.util.List;
19+
20+
/**
21+
* @author auto create
22+
* @version
23+
*/
24+
public class AddBulkPhoneNumbersRequest extends RpcAcsRequest<AddBulkPhoneNumbersResponse> {
25+
26+
public AddBulkPhoneNumbersRequest() {
27+
super("CCC", "2017-07-05", "AddBulkPhoneNumbers");
28+
}
29+
30+
private String contactFlowId;
31+
32+
private String instanceId;
33+
34+
private String usage;
35+
36+
private List<String> skillGroupIds;
37+
38+
private List<String> phoneNumbers;
39+
40+
public String getContactFlowId() {
41+
return this.contactFlowId;
42+
}
43+
44+
public void setContactFlowId(String contactFlowId) {
45+
this.contactFlowId = contactFlowId;
46+
if(contactFlowId != null){
47+
putQueryParameter("ContactFlowId", contactFlowId);
48+
}
49+
}
50+
51+
public String getInstanceId() {
52+
return this.instanceId;
53+
}
54+
55+
public void setInstanceId(String instanceId) {
56+
this.instanceId = instanceId;
57+
if(instanceId != null){
58+
putQueryParameter("InstanceId", instanceId);
59+
}
60+
}
61+
62+
public String getUsage() {
63+
return this.usage;
64+
}
65+
66+
public void setUsage(String usage) {
67+
this.usage = usage;
68+
if(usage != null){
69+
putQueryParameter("Usage", usage);
70+
}
71+
}
72+
73+
public List<String> getSkillGroupIds() {
74+
return this.skillGroupIds;
75+
}
76+
77+
public void setSkillGroupIds(List<String> skillGroupIds) {
78+
this.skillGroupIds = skillGroupIds;
79+
if (skillGroupIds != null) {
80+
for (int i = 0; i < skillGroupIds.size(); i++) {
81+
putQueryParameter("SkillGroupId." + (i + 1) , skillGroupIds.get(i));
82+
}
83+
}
84+
}
85+
86+
public List<String> getPhoneNumbers() {
87+
return this.phoneNumbers;
88+
}
89+
90+
public void setPhoneNumbers(List<String> phoneNumbers) {
91+
this.phoneNumbers = phoneNumbers;
92+
if (phoneNumbers != null) {
93+
for (int i = 0; i < phoneNumbers.size(); i++) {
94+
putQueryParameter("PhoneNumber." + (i + 1) , phoneNumbers.get(i));
95+
}
96+
}
97+
}
98+
99+
@Override
100+
public Class<AddBulkPhoneNumbersResponse> getResponseClass() {
101+
return AddBulkPhoneNumbersResponse.class;
102+
}
103+
104+
}

0 commit comments

Comments
 (0)