Skip to content

Commit 7378eda

Browse files
committed
Supported cro algorithm.
1 parent a0b08d8 commit 7378eda

24 files changed

+495
-20
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-08-31 Version: 1.2.2
2+
- Supported cro algorithm.
3+
14
2021-08-31 Version: 3.13.8
25
- Supported AndroidBigPictureUrl, AndroidInboxBody, AndroidImageUrl, AndroidOppoImageId, AndroidXiaomiImageUrl, iOSNotificationThreadId for Push and MassPush.
36

aliyun-net-sdk-reid_cloud/Reid_cloud/Model/V20201029/DescribeBaseStatisticsRequest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace Aliyun.Acs.reid_cloud.Model.V20201029
3030
public class DescribeBaseStatisticsRequest : RpcAcsRequest<DescribeBaseStatisticsResponse>
3131
{
3232
public DescribeBaseStatisticsRequest()
33-
: base("reid_cloud", "2020-10-29", "DescribeBaseStatistics", "1.2.1", "openAPI")
33+
: base("reid_cloud", "2020-10-29", "DescribeBaseStatistics", "1.2.2", "openAPI")
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{

aliyun-net-sdk-reid_cloud/Reid_cloud/Model/V20201029/DescribeCameraStatisticsRequest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace Aliyun.Acs.reid_cloud.Model.V20201029
3030
public class DescribeCameraStatisticsRequest : RpcAcsRequest<DescribeCameraStatisticsResponse>
3131
{
3232
public DescribeCameraStatisticsRequest()
33-
: base("reid_cloud", "2020-10-29", "DescribeCameraStatistics", "1.2.1", "openAPI")
33+
: base("reid_cloud", "2020-10-29", "DescribeCameraStatistics", "1.2.2", "openAPI")
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{

aliyun-net-sdk-reid_cloud/Reid_cloud/Model/V20201029/DescribeCursorRequest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace Aliyun.Acs.reid_cloud.Model.V20201029
3030
public class DescribeCursorRequest : RpcAcsRequest<DescribeCursorResponse>
3131
{
3232
public DescribeCursorRequest()
33-
: base("reid_cloud", "2020-10-29", "DescribeCursor", "1.2.1", "openAPI")
33+
: base("reid_cloud", "2020-10-29", "DescribeCursor", "1.2.2", "openAPI")
3434
{
3535
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3636
{
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
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.reid_cloud.Transform;
26+
using Aliyun.Acs.reid_cloud.Transform.V20201029;
27+
28+
namespace Aliyun.Acs.reid_cloud.Model.V20201029
29+
{
30+
public class DescribeCustomerFlowByLocationOfflineRequest : RpcAcsRequest<DescribeCustomerFlowByLocationOfflineResponse>
31+
{
32+
public DescribeCustomerFlowByLocationOfflineRequest()
33+
: base("reid_cloud", "2020-10-29", "DescribeCustomerFlowByLocationOffline", "1.2.2", "openAPI")
34+
{
35+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
36+
{
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.reid_cloud.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.reid_cloud.Endpoint.endpointRegionalType, null);
39+
}
40+
Method = MethodType.POST;
41+
}
42+
43+
private string startDate;
44+
45+
private long? storeId;
46+
47+
public string StartDate
48+
{
49+
get
50+
{
51+
return startDate;
52+
}
53+
set
54+
{
55+
startDate = value;
56+
DictionaryUtil.Add(BodyParameters, "StartDate", value);
57+
}
58+
}
59+
60+
public long? StoreId
61+
{
62+
get
63+
{
64+
return storeId;
65+
}
66+
set
67+
{
68+
storeId = value;
69+
DictionaryUtil.Add(BodyParameters, "StoreId", value.ToString());
70+
}
71+
}
72+
73+
public override bool CheckShowJsonItemName()
74+
{
75+
return false;
76+
}
77+
78+
public override DescribeCustomerFlowByLocationOfflineResponse GetResponse(UnmarshallerContext unmarshallerContext)
79+
{
80+
return DescribeCustomerFlowByLocationOfflineResponseUnmarshaller.Unmarshall(unmarshallerContext);
81+
}
82+
}
83+
}

0 commit comments

Comments
 (0)