Skip to content

Commit 931e4b4

Browse files
committed
Added param for ActivateLicenseResponse .
1 parent fd2ffd8 commit 931e4b4

File tree

5 files changed

+200
-1
lines changed

5 files changed

+200
-1
lines changed

aliyun-java-sdk-mseap/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-05-21 Version: 1.0.3
2+
- Added param for ActivateLicenseResponse .
3+
14
2025-05-20 Version: 1.0.2
25
- Added param for ActivateLicenseResponse .
36

aliyun-java-sdk-mseap/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-mseap</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.0.2</version>
7+
<version>1.0.3</version>
88
<name>aliyun-java-sdk-mseap</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
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.mseap.model.v20210118;
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 GetPlatformUserInfoForPartnerRequest extends RpcAcsRequest<GetPlatformUserInfoForPartnerResponse> {
26+
27+
28+
private String userId;
29+
30+
private String appId;
31+
32+
private String platformType;
33+
public GetPlatformUserInfoForPartnerRequest() {
34+
super("mseap", "2021-01-18", "GetPlatformUserInfoForPartner");
35+
setProtocol(ProtocolType.HTTPS);
36+
setMethod(MethodType.POST);
37+
}
38+
39+
public String getUserId() {
40+
return this.userId;
41+
}
42+
43+
public void setUserId(String userId) {
44+
this.userId = userId;
45+
if(userId != null){
46+
putQueryParameter("UserId", userId);
47+
}
48+
}
49+
50+
public String getAppId() {
51+
return this.appId;
52+
}
53+
54+
public void setAppId(String appId) {
55+
this.appId = appId;
56+
if(appId != null){
57+
putQueryParameter("AppId", appId);
58+
}
59+
}
60+
61+
public String getPlatformType() {
62+
return this.platformType;
63+
}
64+
65+
public void setPlatformType(String platformType) {
66+
this.platformType = platformType;
67+
if(platformType != null){
68+
putQueryParameter("PlatformType", platformType);
69+
}
70+
}
71+
72+
@Override
73+
public Class<GetPlatformUserInfoForPartnerResponse> getResponseClass() {
74+
return GetPlatformUserInfoForPartnerResponse.class;
75+
}
76+
77+
}
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.mseap.model.v20210118;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.mseap.transform.v20210118.GetPlatformUserInfoForPartnerResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class GetPlatformUserInfoForPartnerResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private String errorMsg;
30+
31+
private Boolean success;
32+
33+
private String encryptedOpenId;
34+
35+
private String encryptedUnionId;
36+
37+
public String getRequestId() {
38+
return this.requestId;
39+
}
40+
41+
public void setRequestId(String requestId) {
42+
this.requestId = requestId;
43+
}
44+
45+
public String getErrorMsg() {
46+
return this.errorMsg;
47+
}
48+
49+
public void setErrorMsg(String errorMsg) {
50+
this.errorMsg = errorMsg;
51+
}
52+
53+
public Boolean getSuccess() {
54+
return this.success;
55+
}
56+
57+
public void setSuccess(Boolean success) {
58+
this.success = success;
59+
}
60+
61+
public String getEncryptedOpenId() {
62+
return this.encryptedOpenId;
63+
}
64+
65+
public void setEncryptedOpenId(String encryptedOpenId) {
66+
this.encryptedOpenId = encryptedOpenId;
67+
}
68+
69+
public String getEncryptedUnionId() {
70+
return this.encryptedUnionId;
71+
}
72+
73+
public void setEncryptedUnionId(String encryptedUnionId) {
74+
this.encryptedUnionId = encryptedUnionId;
75+
}
76+
77+
@Override
78+
public GetPlatformUserInfoForPartnerResponse getInstance(UnmarshallerContext context) {
79+
return GetPlatformUserInfoForPartnerResponseUnmarshaller.unmarshall(this, context);
80+
}
81+
82+
@Override
83+
public boolean checkShowJsonItemName() {
84+
return false;
85+
}
86+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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.mseap.transform.v20210118;
16+
17+
import com.aliyuncs.mseap.model.v20210118.GetPlatformUserInfoForPartnerResponse;
18+
import com.aliyuncs.transform.UnmarshallerContext;
19+
20+
21+
public class GetPlatformUserInfoForPartnerResponseUnmarshaller {
22+
23+
public static GetPlatformUserInfoForPartnerResponse unmarshall(GetPlatformUserInfoForPartnerResponse getPlatformUserInfoForPartnerResponse, UnmarshallerContext _ctx) {
24+
25+
getPlatformUserInfoForPartnerResponse.setRequestId(_ctx.stringValue("GetPlatformUserInfoForPartnerResponse.RequestId"));
26+
getPlatformUserInfoForPartnerResponse.setErrorMsg(_ctx.stringValue("GetPlatformUserInfoForPartnerResponse.ErrorMsg"));
27+
getPlatformUserInfoForPartnerResponse.setSuccess(_ctx.booleanValue("GetPlatformUserInfoForPartnerResponse.Success"));
28+
getPlatformUserInfoForPartnerResponse.setEncryptedOpenId(_ctx.stringValue("GetPlatformUserInfoForPartnerResponse.EncryptedOpenId"));
29+
getPlatformUserInfoForPartnerResponse.setEncryptedUnionId(_ctx.stringValue("GetPlatformUserInfoForPartnerResponse.EncryptedUnionId"));
30+
31+
return getPlatformUserInfoForPartnerResponse;
32+
}
33+
}

0 commit comments

Comments
 (0)