File tree Expand file tree Collapse file tree 3 files changed +24
-2
lines changed
src/main/java/com/aliyuncs/iot/model/v20160104 Expand file tree Collapse file tree 3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 3
3
<groupId >com.aliyun</groupId >
4
4
<artifactId >aliyun-java-sdk-iot</artifactId >
5
5
<packaging >jar</packaging >
6
- <version >2.0.0 </version >
6
+ <version >2.0.1 </version >
7
7
<name >aliyun-java-sdk-iot</name >
8
8
<url >http://www.aliyun.com</url >
9
9
<description >Aliyun Open API SDK for Java
@@ -78,4 +78,4 @@ http://www.aliyun.com</description>
78
78
</plugin >
79
79
</plugins >
80
80
</build >
81
- </project >
81
+ </project >
Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ public SubRequest() {
37
37
38
38
private String subCallback ;
39
39
40
+ private String topicList ;
41
+
40
42
public List <String > getTopics () {
41
43
return this .topics ;
42
44
}
@@ -66,6 +68,15 @@ public void setSubCallback(String subCallback) {
66
68
putQueryParameter ("SubCallback" , subCallback );
67
69
}
68
70
71
+ public String getTopicList () {
72
+ return this .topicList ;
73
+ }
74
+
75
+ public void setTopicList (String topicList ) {
76
+ this .topicList = topicList ;
77
+ putQueryParameter ("TopicList" , topicList );
78
+ }
79
+
69
80
@ Override
70
81
public Class <SubResponse > getResponseClass () {
71
82
return SubResponse .class ;
Original file line number Diff line number Diff line change @@ -35,6 +35,8 @@ public UnSubRequest() {
35
35
36
36
private Long appKey ;
37
37
38
+ private String topicList ;
39
+
38
40
public List <String > getTopics () {
39
41
return this .topics ;
40
42
}
@@ -55,6 +57,15 @@ public void setAppKey(Long appKey) {
55
57
putQueryParameter ("AppKey" , appKey );
56
58
}
57
59
60
+ public String getTopicList () {
61
+ return this .topicList ;
62
+ }
63
+
64
+ public void setTopicList (String topicList ) {
65
+ this .topicList = topicList ;
66
+ putQueryParameter ("TopicList" , topicList );
67
+ }
68
+
58
69
@ Override
59
70
public Class <UnSubResponse > getResponseClass () {
60
71
return UnSubResponse .class ;
You can’t perform that action at this time.
0 commit comments