Skip to content

Commit 93f5511

Browse files
committed
Generated 2021-12-21 for wss.
1 parent ed3d90d commit 93f5511

8 files changed

+981
-0
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-09-29 Version: 1.0.0
2+
- Generated 2021-12-21 for `wss`.
3+
14
2024-09-24 Version: 1.0.0
25
- Generated 2024-02-22 for `OssSddp`.
36

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
using System.Collections.Generic;
20+
21+
using Aliyun.Acs.Core;
22+
using Aliyun.Acs.Core.Http;
23+
using Aliyun.Acs.Core.Transform;
24+
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.wss;
26+
using Aliyun.Acs.wss.Transform;
27+
using Aliyun.Acs.wss.Transform.V20211221;
28+
29+
namespace Aliyun.Acs.wss.Model.V20211221
30+
{
31+
public class DescribeDeliveryAddressRequest : RpcAcsRequest<DescribeDeliveryAddressResponse>
32+
{
33+
public DescribeDeliveryAddressRequest()
34+
: base("wss", "2021-12-21", "DescribeDeliveryAddress")
35+
{
36+
Method = MethodType.POST;
37+
}
38+
39+
public override bool CheckShowJsonItemName()
40+
{
41+
return false;
42+
}
43+
44+
public override DescribeDeliveryAddressResponse GetResponse(UnmarshallerContext unmarshallerContext)
45+
{
46+
return DescribeDeliveryAddressResponseUnmarshaller.Unmarshall(unmarshallerContext);
47+
}
48+
}
49+
}
Lines changed: 328 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,328 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
using System.Collections.Generic;
20+
using Newtonsoft.Json;
21+
using Aliyun.Acs.Core;
22+
23+
namespace Aliyun.Acs.wss.Model.V20211221
24+
{
25+
public class DescribeDeliveryAddressResponse : AcsResponse
26+
{
27+
28+
private int? totalCount;
29+
30+
private string requestId;
31+
32+
private List<DescribeDeliveryAddress_Address> addresses;
33+
34+
public int? TotalCount
35+
{
36+
get
37+
{
38+
return totalCount;
39+
}
40+
set
41+
{
42+
totalCount = value;
43+
}
44+
}
45+
46+
public string RequestId
47+
{
48+
get
49+
{
50+
return requestId;
51+
}
52+
set
53+
{
54+
requestId = value;
55+
}
56+
}
57+
58+
public List<DescribeDeliveryAddress_Address> Addresses
59+
{
60+
get
61+
{
62+
return addresses;
63+
}
64+
set
65+
{
66+
addresses = value;
67+
}
68+
}
69+
70+
public class DescribeDeliveryAddress_Address
71+
{
72+
73+
private string postalCode;
74+
75+
private string contacts;
76+
77+
private string mobile;
78+
79+
private bool? defaultAddress;
80+
81+
private string detail;
82+
83+
private DescribeDeliveryAddress_Province province;
84+
85+
private DescribeDeliveryAddress_City city;
86+
87+
private DescribeDeliveryAddress_Area area;
88+
89+
private DescribeDeliveryAddress_Town town;
90+
91+
public string PostalCode
92+
{
93+
get
94+
{
95+
return postalCode;
96+
}
97+
set
98+
{
99+
postalCode = value;
100+
}
101+
}
102+
103+
public string Contacts
104+
{
105+
get
106+
{
107+
return contacts;
108+
}
109+
set
110+
{
111+
contacts = value;
112+
}
113+
}
114+
115+
public string Mobile
116+
{
117+
get
118+
{
119+
return mobile;
120+
}
121+
set
122+
{
123+
mobile = value;
124+
}
125+
}
126+
127+
public bool? DefaultAddress
128+
{
129+
get
130+
{
131+
return defaultAddress;
132+
}
133+
set
134+
{
135+
defaultAddress = value;
136+
}
137+
}
138+
139+
public string Detail
140+
{
141+
get
142+
{
143+
return detail;
144+
}
145+
set
146+
{
147+
detail = value;
148+
}
149+
}
150+
151+
public DescribeDeliveryAddress_Province Province
152+
{
153+
get
154+
{
155+
return province;
156+
}
157+
set
158+
{
159+
province = value;
160+
}
161+
}
162+
163+
public DescribeDeliveryAddress_City City
164+
{
165+
get
166+
{
167+
return city;
168+
}
169+
set
170+
{
171+
city = value;
172+
}
173+
}
174+
175+
public DescribeDeliveryAddress_Area Area
176+
{
177+
get
178+
{
179+
return area;
180+
}
181+
set
182+
{
183+
area = value;
184+
}
185+
}
186+
187+
public DescribeDeliveryAddress_Town Town
188+
{
189+
get
190+
{
191+
return town;
192+
}
193+
set
194+
{
195+
town = value;
196+
}
197+
}
198+
199+
public class DescribeDeliveryAddress_Province
200+
{
201+
202+
private long? provinceId;
203+
204+
private string provinceName;
205+
206+
public long? ProvinceId
207+
{
208+
get
209+
{
210+
return provinceId;
211+
}
212+
set
213+
{
214+
provinceId = value;
215+
}
216+
}
217+
218+
public string ProvinceName
219+
{
220+
get
221+
{
222+
return provinceName;
223+
}
224+
set
225+
{
226+
provinceName = value;
227+
}
228+
}
229+
}
230+
231+
public class DescribeDeliveryAddress_City
232+
{
233+
234+
private long? cityId;
235+
236+
private string cityName;
237+
238+
public long? CityId
239+
{
240+
get
241+
{
242+
return cityId;
243+
}
244+
set
245+
{
246+
cityId = value;
247+
}
248+
}
249+
250+
public string CityName
251+
{
252+
get
253+
{
254+
return cityName;
255+
}
256+
set
257+
{
258+
cityName = value;
259+
}
260+
}
261+
}
262+
263+
public class DescribeDeliveryAddress_Area
264+
{
265+
266+
private string areaName;
267+
268+
private long? areaId;
269+
270+
public string AreaName
271+
{
272+
get
273+
{
274+
return areaName;
275+
}
276+
set
277+
{
278+
areaName = value;
279+
}
280+
}
281+
282+
public long? AreaId
283+
{
284+
get
285+
{
286+
return areaId;
287+
}
288+
set
289+
{
290+
areaId = value;
291+
}
292+
}
293+
}
294+
295+
public class DescribeDeliveryAddress_Town
296+
{
297+
298+
private string townName;
299+
300+
private long? townId;
301+
302+
public string TownName
303+
{
304+
get
305+
{
306+
return townName;
307+
}
308+
set
309+
{
310+
townName = value;
311+
}
312+
}
313+
314+
public long? TownId
315+
{
316+
get
317+
{
318+
return townId;
319+
}
320+
set
321+
{
322+
townId = value;
323+
}
324+
}
325+
}
326+
}
327+
}
328+
}

0 commit comments

Comments
 (0)