Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 747c44e

Browse files
committed
LINKEDMALL SDK Auto Released By quming,Version:2.0.20
发布日志: 1, This is an example of release-log. 2, Please strictly follow this format to edit in English. 3, Format:Number + , + Space + Description
1 parent 986186d commit 747c44e

12 files changed

+774
-1
lines changed

aliyun-java-sdk-linkedmall/ChangeLog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2019-05-13 Version: 2.0.20
2+
1, This is an example of release-log.
3+
2, Please strictly follow this format to edit in English.
4+
3, Format:Number + , + Space + Description
5+
16
2019-04-30 Version: 2.0.19
27
1, This is an example of release-log.
38
2, Please strictly follow this format to edit in English.

aliyun-java-sdk-linkedmall/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-linkedmall</artifactId>
55
<packaging>jar</packaging>
6-
<version>2.0.19</version>
6+
<version>2.0.20</version>
77
<name>aliyun-java-sdk-linkedmall</name>
88
<url>http://www.aliyun.com</url>
99
<description>Aliyun Open API SDK for Java
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
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.linkedmall.model.v20180116;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.MethodType;
19+
20+
/**
21+
* @author auto create
22+
* @version
23+
*/
24+
public class CancelRefundRequest extends RpcAcsRequest<CancelRefundResponse> {
25+
26+
public CancelRefundRequest() {
27+
super("linkedmall", "2018-01-16", "CancelRefund", "linkedmall");
28+
setMethod(MethodType.POST);
29+
}
30+
31+
private String subLmOrderId;
32+
33+
private String bizUid;
34+
35+
private Long disputeId;
36+
37+
private String bizId;
38+
39+
public String getSubLmOrderId() {
40+
return this.subLmOrderId;
41+
}
42+
43+
public void setSubLmOrderId(String subLmOrderId) {
44+
this.subLmOrderId = subLmOrderId;
45+
if(subLmOrderId != null){
46+
putQueryParameter("SubLmOrderId", subLmOrderId);
47+
}
48+
}
49+
50+
public String getBizUid() {
51+
return this.bizUid;
52+
}
53+
54+
public void setBizUid(String bizUid) {
55+
this.bizUid = bizUid;
56+
if(bizUid != null){
57+
putQueryParameter("BizUid", bizUid);
58+
}
59+
}
60+
61+
public Long getDisputeId() {
62+
return this.disputeId;
63+
}
64+
65+
public void setDisputeId(Long disputeId) {
66+
this.disputeId = disputeId;
67+
if(disputeId != null){
68+
putQueryParameter("DisputeId", disputeId.toString());
69+
}
70+
}
71+
72+
public String getBizId() {
73+
return this.bizId;
74+
}
75+
76+
public void setBizId(String bizId) {
77+
this.bizId = bizId;
78+
if(bizId != null){
79+
putQueryParameter("BizId", bizId);
80+
}
81+
}
82+
83+
@Override
84+
public Class<CancelRefundResponse> getResponseClass() {
85+
return CancelRefundResponse.class;
86+
}
87+
88+
}
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.linkedmall.model.v20180116;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.linkedmall.transform.v20180116.CancelRefundResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CancelRefundResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private String code;
30+
31+
private String message;
32+
33+
private RefundApplicationData refundApplicationData;
34+
35+
public String getRequestId() {
36+
return this.requestId;
37+
}
38+
39+
public void setRequestId(String requestId) {
40+
this.requestId = requestId;
41+
}
42+
43+
public String getCode() {
44+
return this.code;
45+
}
46+
47+
public void setCode(String code) {
48+
this.code = code;
49+
}
50+
51+
public String getMessage() {
52+
return this.message;
53+
}
54+
55+
public void setMessage(String message) {
56+
this.message = message;
57+
}
58+
59+
public RefundApplicationData getRefundApplicationData() {
60+
return this.refundApplicationData;
61+
}
62+
63+
public void setRefundApplicationData(RefundApplicationData refundApplicationData) {
64+
this.refundApplicationData = refundApplicationData;
65+
}
66+
67+
public static class RefundApplicationData {
68+
69+
private String subLmOrderId;
70+
71+
private Integer disputeStatus;
72+
73+
private Integer disputeType;
74+
75+
public String getSubLmOrderId() {
76+
return this.subLmOrderId;
77+
}
78+
79+
public void setSubLmOrderId(String subLmOrderId) {
80+
this.subLmOrderId = subLmOrderId;
81+
}
82+
83+
public Integer getDisputeStatus() {
84+
return this.disputeStatus;
85+
}
86+
87+
public void setDisputeStatus(Integer disputeStatus) {
88+
this.disputeStatus = disputeStatus;
89+
}
90+
91+
public Integer getDisputeType() {
92+
return this.disputeType;
93+
}
94+
95+
public void setDisputeType(Integer disputeType) {
96+
this.disputeType = disputeType;
97+
}
98+
}
99+
100+
@Override
101+
public CancelRefundResponse getInstance(UnmarshallerContext context) {
102+
return CancelRefundResponseUnmarshaller.unmarshall(this, context);
103+
}
104+
}

aliyun-java-sdk-linkedmall/src/main/java/com/aliyuncs/linkedmall/model/v20180116/QueryLogisticsResponse.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,8 @@ public static class GoodsItem {
156156

157157
private Integer quantity;
158158

159+
private Long itemId;
160+
159161
public String getGoodName() {
160162
return this.goodName;
161163
}
@@ -171,6 +173,14 @@ public Integer getQuantity() {
171173
public void setQuantity(Integer quantity) {
172174
this.quantity = quantity;
173175
}
176+
177+
public Long getItemId() {
178+
return this.itemId;
179+
}
180+
181+
public void setItemId(Long itemId) {
182+
this.itemId = itemId;
183+
}
174184
}
175185
}
176186

aliyun-java-sdk-linkedmall/src/main/java/com/aliyuncs/linkedmall/model/v20180116/QueryRefundApplicationDetailResponse.java

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,14 @@ public static class RefundApplicationDetail {
100100

101101
private Long disputeId;
102102

103+
private String refunderAddress;
104+
105+
private String refunderName;
106+
107+
private String refunderTel;
108+
109+
private String refunderZipCode;
110+
103111
private MaxRefundFeeData maxRefundFeeData;
104112

105113
private ApplyReasonText applyReasonText;
@@ -240,6 +248,38 @@ public void setDisputeId(Long disputeId) {
240248
this.disputeId = disputeId;
241249
}
242250

251+
public String getRefunderAddress() {
252+
return this.refunderAddress;
253+
}
254+
255+
public void setRefunderAddress(String refunderAddress) {
256+
this.refunderAddress = refunderAddress;
257+
}
258+
259+
public String getRefunderName() {
260+
return this.refunderName;
261+
}
262+
263+
public void setRefunderName(String refunderName) {
264+
this.refunderName = refunderName;
265+
}
266+
267+
public String getRefunderTel() {
268+
return this.refunderTel;
269+
}
270+
271+
public void setRefunderTel(String refunderTel) {
272+
this.refunderTel = refunderTel;
273+
}
274+
275+
public String getRefunderZipCode() {
276+
return this.refunderZipCode;
277+
}
278+
279+
public void setRefunderZipCode(String refunderZipCode) {
280+
this.refunderZipCode = refunderZipCode;
281+
}
282+
243283
public MaxRefundFeeData getMaxRefundFeeData() {
244284
return this.maxRefundFeeData;
245285
}

0 commit comments

Comments
 (0)