Skip to content

Commit d1c30a9

Browse files
committed
Add Mutimedia Screen API Support.
1 parent eed4fdc commit d1c30a9

File tree

67 files changed

+6165
-178
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+6165
-178
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2022-07-18 Version: 2.1.1
2+
- Add Mutimedia Screen API Support.
3+
14
2022-07-18 Version: 1.1.17
25
- Change cspm ListCheckResult api.
36

aliyun-net-sdk-cloudesl/Cloudesl/Model/V20200201/AddCompanyTemplateRequest.cs

+30
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,12 @@ public AddCompanyTemplateRequest()
6161

6262
private string templateName;
6363

64+
private string templateSceneId;
65+
6466
private bool? ifSourceCode;
6567

68+
private string groupId;
69+
6670
private bool? ifMember;
6771

6872
private int? layout;
@@ -199,6 +203,19 @@ public string TemplateName
199203
}
200204
}
201205

206+
public string TemplateSceneId
207+
{
208+
get
209+
{
210+
return templateSceneId;
211+
}
212+
set
213+
{
214+
templateSceneId = value;
215+
DictionaryUtil.Add(BodyParameters, "TemplateSceneId", value);
216+
}
217+
}
218+
202219
public bool? IfSourceCode
203220
{
204221
get
@@ -212,6 +229,19 @@ public bool? IfSourceCode
212229
}
213230
}
214231

232+
public string GroupId
233+
{
234+
get
235+
{
236+
return groupId;
237+
}
238+
set
239+
{
240+
groupId = value;
241+
DictionaryUtil.Add(BodyParameters, "GroupId", value);
242+
}
243+
}
244+
215245
public bool? IfMember
216246
{
217247
get

aliyun-net-sdk-cloudesl/Cloudesl/Model/V20200201/BatchInsertItemsRequest.cs

+15
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ public List<ItemInfo> ItemInfos
155155
DictionaryUtil.Add(BodyParameters,"ItemInfo." + (i + 1) + ".ItemPicUrl", itemInfos[i].ItemPicUrl);
156156
DictionaryUtil.Add(BodyParameters,"ItemInfo." + (i + 1) + ".ForestSecondId", itemInfos[i].ForestSecondId);
157157
DictionaryUtil.Add(BodyParameters,"ItemInfo." + (i + 1) + ".SupplierName", itemInfos[i].SupplierName);
158+
DictionaryUtil.Add(BodyParameters,"ItemInfo." + (i + 1) + ".BeClearance", itemInfos[i].BeClearance);
158159
DictionaryUtil.Add(BodyParameters,"ItemInfo." + (i + 1) + ".Material", itemInfos[i].Material);
159160
DictionaryUtil.Add(BodyParameters,"ItemInfo." + (i + 1) + ".ModelNumber", itemInfos[i].ModelNumber);
160161
DictionaryUtil.Add(BodyParameters,"ItemInfo." + (i + 1) + ".SaleSpec", itemInfos[i].SaleSpec);
@@ -280,6 +281,8 @@ public class ItemInfo
280281

281282
private string supplierName;
282283

284+
private bool? beClearance;
285+
283286
private string material;
284287

285288
private string modelNumber;
@@ -956,6 +959,18 @@ public string SupplierName
956959
}
957960
}
958961

962+
public bool? BeClearance
963+
{
964+
get
965+
{
966+
return beClearance;
967+
}
968+
set
969+
{
970+
beClearance = value;
971+
}
972+
}
973+
959974
public string Material
960975
{
961976
get
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
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.cloudesl;
26+
using Aliyun.Acs.cloudesl.Transform;
27+
using Aliyun.Acs.cloudesl.Transform.V20200201;
28+
29+
namespace Aliyun.Acs.cloudesl.Model.V20200201
30+
{
31+
public class BindDeviceLayoutRequest : RpcAcsRequest<BindDeviceLayoutResponse>
32+
{
33+
public BindDeviceLayoutRequest()
34+
: base("cloudesl", "2020-02-01", "BindDeviceLayout")
35+
{
36+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
37+
{
38+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.cloudesl.Endpoint.endpointMap, null);
39+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.cloudesl.Endpoint.endpointRegionalType, null);
40+
}
41+
Method = MethodType.POST;
42+
}
43+
44+
private string storeId;
45+
46+
private string layoutId;
47+
48+
private string eslBarCode;
49+
50+
public string StoreId
51+
{
52+
get
53+
{
54+
return storeId;
55+
}
56+
set
57+
{
58+
storeId = value;
59+
DictionaryUtil.Add(BodyParameters, "StoreId", value);
60+
}
61+
}
62+
63+
public string LayoutId
64+
{
65+
get
66+
{
67+
return layoutId;
68+
}
69+
set
70+
{
71+
layoutId = value;
72+
DictionaryUtil.Add(BodyParameters, "LayoutId", value);
73+
}
74+
}
75+
76+
public string EslBarCode
77+
{
78+
get
79+
{
80+
return eslBarCode;
81+
}
82+
set
83+
{
84+
eslBarCode = value;
85+
DictionaryUtil.Add(BodyParameters, "EslBarCode", value);
86+
}
87+
}
88+
89+
public override bool CheckShowJsonItemName()
90+
{
91+
return false;
92+
}
93+
94+
public override BindDeviceLayoutResponse GetResponse(UnmarshallerContext unmarshallerContext)
95+
{
96+
return BindDeviceLayoutResponseUnmarshaller.Unmarshall(unmarshallerContext);
97+
}
98+
}
99+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
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+
23+
namespace Aliyun.Acs.cloudesl.Model.V20200201
24+
{
25+
public class BindDeviceLayoutResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private bool? success;
31+
32+
private string message;
33+
34+
private string errorCode;
35+
36+
private string errorMessage;
37+
38+
private string code;
39+
40+
private string dynamicCode;
41+
42+
private string dynamicMessage;
43+
44+
public string RequestId
45+
{
46+
get
47+
{
48+
return requestId;
49+
}
50+
set
51+
{
52+
requestId = value;
53+
}
54+
}
55+
56+
public bool? Success
57+
{
58+
get
59+
{
60+
return success;
61+
}
62+
set
63+
{
64+
success = value;
65+
}
66+
}
67+
68+
public string Message
69+
{
70+
get
71+
{
72+
return message;
73+
}
74+
set
75+
{
76+
message = value;
77+
}
78+
}
79+
80+
public string ErrorCode
81+
{
82+
get
83+
{
84+
return errorCode;
85+
}
86+
set
87+
{
88+
errorCode = value;
89+
}
90+
}
91+
92+
public string ErrorMessage
93+
{
94+
get
95+
{
96+
return errorMessage;
97+
}
98+
set
99+
{
100+
errorMessage = value;
101+
}
102+
}
103+
104+
public string Code
105+
{
106+
get
107+
{
108+
return code;
109+
}
110+
set
111+
{
112+
code = value;
113+
}
114+
}
115+
116+
public string DynamicCode
117+
{
118+
get
119+
{
120+
return dynamicCode;
121+
}
122+
set
123+
{
124+
dynamicCode = value;
125+
}
126+
}
127+
128+
public string DynamicMessage
129+
{
130+
get
131+
{
132+
return dynamicMessage;
133+
}
134+
set
135+
{
136+
dynamicMessage = value;
137+
}
138+
}
139+
}
140+
}

0 commit comments

Comments
 (0)