Skip to content

Commit 596ac5d

Browse files
committed
distrcit
1 parent e506e68 commit 596ac5d

File tree

5 files changed

+215
-1
lines changed

5 files changed

+215
-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.7
2+
- distrcit
3+
14
2025-10-24 Version: 3.38.6
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.38.6</version>
7+
<version>3.38.7</version>
88
<name>aliyun-java-sdk-account-crm</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,64 @@
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 FindPkByHidForLoginWithLegacyRequest extends RpcAcsRequest<FindPkByHidForLoginWithLegacyResponse> {
26+
27+
28+
private String hid;
29+
30+
private String securityToken;
31+
public FindPkByHidForLoginWithLegacyRequest() {
32+
super("account-crm", "2016-06-06", "FindPkByHidForLoginWithLegacy");
33+
setProtocol(ProtocolType.HTTPS);
34+
setMethod(MethodType.GET);
35+
}
36+
37+
public String getHid() {
38+
return this.hid;
39+
}
40+
41+
public void setHid(String hid) {
42+
this.hid = hid;
43+
if(hid != null){
44+
putQueryParameter("Hid", hid);
45+
}
46+
}
47+
48+
public String getSecurityToken() {
49+
return this.securityToken;
50+
}
51+
52+
public void setSecurityToken(String securityToken) {
53+
this.securityToken = securityToken;
54+
if(securityToken != null){
55+
putQueryParameter("SecurityToken", securityToken);
56+
}
57+
}
58+
59+
@Override
60+
public Class<FindPkByHidForLoginWithLegacyResponse> getResponseClass() {
61+
return FindPkByHidForLoginWithLegacyResponse.class;
62+
}
63+
64+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
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.FindPkByHidForLoginWithLegacyResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class FindPkByHidForLoginWithLegacyResponse extends AcsResponse {
26+
27+
private String message;
28+
29+
private String code;
30+
31+
private Boolean success;
32+
33+
private String requestId;
34+
35+
private Data data;
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 getCode() {
46+
return this.code;
47+
}
48+
49+
public void setCode(String code) {
50+
this.code = code;
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 getRequestId() {
62+
return this.requestId;
63+
}
64+
65+
public void setRequestId(String requestId) {
66+
this.requestId = requestId;
67+
}
68+
69+
public Data getData() {
70+
return this.data;
71+
}
72+
73+
public void setData(Data data) {
74+
this.data = data;
75+
}
76+
77+
public static class Data {
78+
79+
private String hid;
80+
81+
private String pk;
82+
83+
public String getHid() {
84+
return this.hid;
85+
}
86+
87+
public void setHid(String hid) {
88+
this.hid = hid;
89+
}
90+
91+
public String getPk() {
92+
return this.pk;
93+
}
94+
95+
public void setPk(String pk) {
96+
this.pk = pk;
97+
}
98+
}
99+
100+
@Override
101+
public FindPkByHidForLoginWithLegacyResponse getInstance(UnmarshallerContext context) {
102+
return FindPkByHidForLoginWithLegacyResponseUnmarshaller.unmarshall(this, context);
103+
}
104+
105+
@Override
106+
public boolean checkShowJsonItemName() {
107+
return false;
108+
}
109+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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.transform.v20160606;
16+
17+
import com.aliyuncs.account_crm.model.v20160606.FindPkByHidForLoginWithLegacyResponse;
18+
import com.aliyuncs.account_crm.model.v20160606.FindPkByHidForLoginWithLegacyResponse.Data;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
22+
public class FindPkByHidForLoginWithLegacyResponseUnmarshaller {
23+
24+
public static FindPkByHidForLoginWithLegacyResponse unmarshall(FindPkByHidForLoginWithLegacyResponse findPkByHidForLoginWithLegacyResponse, UnmarshallerContext _ctx) {
25+
26+
findPkByHidForLoginWithLegacyResponse.setRequestId(_ctx.stringValue("FindPkByHidForLoginWithLegacyResponse.RequestId"));
27+
findPkByHidForLoginWithLegacyResponse.setMessage(_ctx.stringValue("FindPkByHidForLoginWithLegacyResponse.Message"));
28+
findPkByHidForLoginWithLegacyResponse.setCode(_ctx.stringValue("FindPkByHidForLoginWithLegacyResponse.Code"));
29+
findPkByHidForLoginWithLegacyResponse.setSuccess(_ctx.booleanValue("FindPkByHidForLoginWithLegacyResponse.Success"));
30+
31+
Data data = new Data();
32+
data.setHid(_ctx.stringValue("FindPkByHidForLoginWithLegacyResponse.Data.Hid"));
33+
data.setPk(_ctx.stringValue("FindPkByHidForLoginWithLegacyResponse.Data.Pk"));
34+
findPkByHidForLoginWithLegacyResponse.setData(data);
35+
36+
return findPkByHidForLoginWithLegacyResponse;
37+
}
38+
}

0 commit comments

Comments
 (0)