|
| 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 java.util.List; |
| 18 | +import com.aliyuncs.AcsResponse; |
| 19 | +import com.aliyuncs.linkedmall.transform.v20180116.QueryOrderItemInfoByPaymentIdForAiZhanYouResponseUnmarshaller; |
| 20 | +import com.aliyuncs.transform.UnmarshallerContext; |
| 21 | + |
| 22 | +/** |
| 23 | + * @author auto create |
| 24 | + * @version |
| 25 | + */ |
| 26 | +public class QueryOrderItemInfoByPaymentIdForAiZhanYouResponse extends AcsResponse { |
| 27 | + |
| 28 | + private String requestId; |
| 29 | + |
| 30 | + private String code; |
| 31 | + |
| 32 | + private String message; |
| 33 | + |
| 34 | + private List<LmOrderListItem> lmOrderList; |
| 35 | + |
| 36 | + public String getRequestId() { |
| 37 | + return this.requestId; |
| 38 | + } |
| 39 | + |
| 40 | + public void setRequestId(String requestId) { |
| 41 | + this.requestId = requestId; |
| 42 | + } |
| 43 | + |
| 44 | + public String getCode() { |
| 45 | + return this.code; |
| 46 | + } |
| 47 | + |
| 48 | + public void setCode(String code) { |
| 49 | + this.code = code; |
| 50 | + } |
| 51 | + |
| 52 | + public String getMessage() { |
| 53 | + return this.message; |
| 54 | + } |
| 55 | + |
| 56 | + public void setMessage(String message) { |
| 57 | + this.message = message; |
| 58 | + } |
| 59 | + |
| 60 | + public List<LmOrderListItem> getLmOrderList() { |
| 61 | + return this.lmOrderList; |
| 62 | + } |
| 63 | + |
| 64 | + public void setLmOrderList(List<LmOrderListItem> lmOrderList) { |
| 65 | + this.lmOrderList = lmOrderList; |
| 66 | + } |
| 67 | + |
| 68 | + public static class LmOrderListItem { |
| 69 | + |
| 70 | + private String itemName; |
| 71 | + |
| 72 | + private Long lmOrderId; |
| 73 | + |
| 74 | + private Long skuId; |
| 75 | + |
| 76 | + private String skuName; |
| 77 | + |
| 78 | + public String getItemName() { |
| 79 | + return this.itemName; |
| 80 | + } |
| 81 | + |
| 82 | + public void setItemName(String itemName) { |
| 83 | + this.itemName = itemName; |
| 84 | + } |
| 85 | + |
| 86 | + public Long getLmOrderId() { |
| 87 | + return this.lmOrderId; |
| 88 | + } |
| 89 | + |
| 90 | + public void setLmOrderId(Long lmOrderId) { |
| 91 | + this.lmOrderId = lmOrderId; |
| 92 | + } |
| 93 | + |
| 94 | + public Long getSkuId() { |
| 95 | + return this.skuId; |
| 96 | + } |
| 97 | + |
| 98 | + public void setSkuId(Long skuId) { |
| 99 | + this.skuId = skuId; |
| 100 | + } |
| 101 | + |
| 102 | + public String getSkuName() { |
| 103 | + return this.skuName; |
| 104 | + } |
| 105 | + |
| 106 | + public void setSkuName(String skuName) { |
| 107 | + this.skuName = skuName; |
| 108 | + } |
| 109 | + } |
| 110 | + |
| 111 | + @Override |
| 112 | + public QueryOrderItemInfoByPaymentIdForAiZhanYouResponse getInstance(UnmarshallerContext context) { |
| 113 | + return QueryOrderItemInfoByPaymentIdForAiZhanYouResponseUnmarshaller.unmarshall(this, context); |
| 114 | + } |
| 115 | +} |
0 commit comments