Skip to content

Commit 20efd1a

Browse files
committed
Fixed bug for GetSecretAsrDetail.
1 parent 4dc0a4e commit 20efd1a

File tree

98 files changed

+3715
-637
lines changed

Some content is hidden

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

98 files changed

+3715
-637
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-09-17 Version: 1.3.1
2+
- Fixed bug for GetSecretAsrDetail.
3+
14
2021-09-16 Version: 3.9.10
25
- Generated 2016-11-01 for `live`.
36

aliyun-net-sdk-dyplsapi/Dyplsapi/Model/V20170525/AddAxnTrackNoRequest.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
using Aliyun.Acs.Core.Http;
2323
using Aliyun.Acs.Core.Transform;
2424
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.Dyplsapi;
2526
using Aliyun.Acs.Dyplsapi.Transform;
2627
using Aliyun.Acs.Dyplsapi.Transform.V20170525;
2728

@@ -30,12 +31,12 @@ namespace Aliyun.Acs.Dyplsapi.Model.V20170525
3031
public class AddAxnTrackNoRequest : RpcAcsRequest<AddAxnTrackNoResponse>
3132
{
3233
public AddAxnTrackNoRequest()
33-
: base("Dyplsapi", "2017-05-25", "AddAxnTrackNo", "dypls", "openAPI")
34+
: base("Dyplsapi", "2017-05-25", "AddAxnTrackNo")
3435
{
3536
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3637
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
38+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Dyplsapi.Endpoint.endpointMap, null);
39+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Dyplsapi.Endpoint.endpointRegionalType, null);
3940
}
4041
Method = MethodType.POST;
4142
}

aliyun-net-sdk-dyplsapi/Dyplsapi/Model/V20170525/AddAxnTrackNoResponse.cs

+12-12
Original file line numberDiff line numberDiff line change
@@ -17,53 +17,53 @@
1717
* under the License.
1818
*/
1919
using System.Collections.Generic;
20-
20+
using Newtonsoft.Json;
2121
using Aliyun.Acs.Core;
2222

2323
namespace Aliyun.Acs.Dyplsapi.Model.V20170525
2424
{
2525
public class AddAxnTrackNoResponse : AcsResponse
2626
{
2727

28-
private string requestId;
29-
3028
private string code;
3129

3230
private string message;
3331

34-
public string RequestId
32+
private string requestId;
33+
34+
public string Code
3535
{
3636
get
3737
{
38-
return requestId;
38+
return code;
3939
}
4040
set
4141
{
42-
requestId = value;
42+
code = value;
4343
}
4444
}
4545

46-
public string Code
46+
public string Message
4747
{
4848
get
4949
{
50-
return code;
50+
return message;
5151
}
5252
set
5353
{
54-
code = value;
54+
message = value;
5555
}
5656
}
5757

58-
public string Message
58+
public string RequestId
5959
{
6060
get
6161
{
62-
return message;
62+
return requestId;
6363
}
6464
set
6565
{
66-
message = value;
66+
requestId = value;
6767
}
6868
}
6969
}

aliyun-net-sdk-dyplsapi/Dyplsapi/Model/V20170525/AddSecretBlacklistRequest.cs

+19-3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
using Aliyun.Acs.Core.Http;
2323
using Aliyun.Acs.Core.Transform;
2424
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.Dyplsapi;
2526
using Aliyun.Acs.Dyplsapi.Transform;
2627
using Aliyun.Acs.Dyplsapi.Transform.V20170525;
2728

@@ -30,12 +31,12 @@ namespace Aliyun.Acs.Dyplsapi.Model.V20170525
3031
public class AddSecretBlacklistRequest : RpcAcsRequest<AddSecretBlacklistResponse>
3132
{
3233
public AddSecretBlacklistRequest()
33-
: base("Dyplsapi", "2017-05-25", "AddSecretBlacklist", "dypls", "openAPI")
34+
: base("Dyplsapi", "2017-05-25", "AddSecretBlacklist")
3435
{
3536
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3637
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
38+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Dyplsapi.Endpoint.endpointMap, null);
39+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Dyplsapi.Endpoint.endpointRegionalType, null);
3940
}
4041
Method = MethodType.POST;
4142
}
@@ -48,6 +49,8 @@ public AddSecretBlacklistRequest()
4849

4950
private string blackNo;
5051

52+
private string wayControl;
53+
5154
public string BlackType
5255
{
5356
get
@@ -100,6 +103,19 @@ public string BlackNo
100103
}
101104
}
102105

106+
public string WayControl
107+
{
108+
get
109+
{
110+
return wayControl;
111+
}
112+
set
113+
{
114+
wayControl = value;
115+
DictionaryUtil.Add(QueryParameters, "WayControl", value);
116+
}
117+
}
118+
103119
public override bool CheckShowJsonItemName()
104120
{
105121
return false;

aliyun-net-sdk-dyplsapi/Dyplsapi/Model/V20170525/AddSecretBlacklistResponse.cs

+12-12
Original file line numberDiff line numberDiff line change
@@ -17,53 +17,53 @@
1717
* under the License.
1818
*/
1919
using System.Collections.Generic;
20-
20+
using Newtonsoft.Json;
2121
using Aliyun.Acs.Core;
2222

2323
namespace Aliyun.Acs.Dyplsapi.Model.V20170525
2424
{
2525
public class AddSecretBlacklistResponse : AcsResponse
2626
{
2727

28-
private string requestId;
29-
3028
private string code;
3129

3230
private string message;
3331

34-
public string RequestId
32+
private string requestId;
33+
34+
public string Code
3535
{
3636
get
3737
{
38-
return requestId;
38+
return code;
3939
}
4040
set
4141
{
42-
requestId = value;
42+
code = value;
4343
}
4444
}
4545

46-
public string Code
46+
public string Message
4747
{
4848
get
4949
{
50-
return code;
50+
return message;
5151
}
5252
set
5353
{
54-
code = value;
54+
message = value;
5555
}
5656
}
5757

58-
public string Message
58+
public string RequestId
5959
{
6060
get
6161
{
62-
return message;
62+
return requestId;
6363
}
6464
set
6565
{
66-
message = value;
66+
requestId = value;
6767
}
6868
}
6969
}

aliyun-net-sdk-dyplsapi/Dyplsapi/Model/V20170525/BindAxbRequest.cs

+19-3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
using Aliyun.Acs.Core.Http;
2323
using Aliyun.Acs.Core.Transform;
2424
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.Dyplsapi;
2526
using Aliyun.Acs.Dyplsapi.Transform;
2627
using Aliyun.Acs.Dyplsapi.Transform.V20170525;
2728

@@ -30,12 +31,12 @@ namespace Aliyun.Acs.Dyplsapi.Model.V20170525
3031
public class BindAxbRequest : RpcAcsRequest<BindAxbResponse>
3132
{
3233
public BindAxbRequest()
33-
: base("Dyplsapi", "2017-05-25", "BindAxb", "dypls", "openAPI")
34+
: base("Dyplsapi", "2017-05-25", "BindAxb")
3435
{
3536
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
3637
{
37-
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38-
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
38+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Dyplsapi.Endpoint.endpointMap, null);
39+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Dyplsapi.Endpoint.endpointRegionalType, null);
3940
}
4041
Method = MethodType.POST;
4142
}
@@ -44,6 +45,8 @@ public BindAxbRequest()
4445

4546
private int? callDisplayType;
4647

48+
private int? callTimeout;
49+
4750
private string phoneNoX;
4851

4952
private string ringConfig;
@@ -100,6 +103,19 @@ public int? CallDisplayType
100103
}
101104
}
102105

106+
public int? CallTimeout
107+
{
108+
get
109+
{
110+
return callTimeout;
111+
}
112+
set
113+
{
114+
callTimeout = value;
115+
DictionaryUtil.Add(QueryParameters, "CallTimeout", value.ToString());
116+
}
117+
}
118+
103119
public string PhoneNoX
104120
{
105121
get

aliyun-net-sdk-dyplsapi/Dyplsapi/Model/V20170525/BindAxbResponse.cs

+23-23
Original file line numberDiff line numberDiff line change
@@ -17,55 +17,55 @@
1717
* under the License.
1818
*/
1919
using System.Collections.Generic;
20-
20+
using Newtonsoft.Json;
2121
using Aliyun.Acs.Core;
2222

2323
namespace Aliyun.Acs.Dyplsapi.Model.V20170525
2424
{
2525
public class BindAxbResponse : AcsResponse
2626
{
2727

28-
private string requestId;
29-
3028
private string code;
3129

3230
private string message;
3331

32+
private string requestId;
33+
3434
private BindAxb_SecretBindDTO secretBindDTO;
3535

36-
public string RequestId
36+
public string Code
3737
{
3838
get
3939
{
40-
return requestId;
40+
return code;
4141
}
4242
set
4343
{
44-
requestId = value;
44+
code = value;
4545
}
4646
}
4747

48-
public string Code
48+
public string Message
4949
{
5050
get
5151
{
52-
return code;
52+
return message;
5353
}
5454
set
5555
{
56-
code = value;
56+
message = value;
5757
}
5858
}
5959

60-
public string Message
60+
public string RequestId
6161
{
6262
get
6363
{
64-
return message;
64+
return requestId;
6565
}
6666
set
6767
{
68-
message = value;
68+
requestId = value;
6969
}
7070
}
7171

@@ -84,45 +84,45 @@ public BindAxb_SecretBindDTO SecretBindDTO
8484
public class BindAxb_SecretBindDTO
8585
{
8686

87+
private string extension;
88+
8789
private string subsId;
8890

8991
private string secretNo;
9092

91-
private string extension;
92-
93-
public string SubsId
93+
public string Extension
9494
{
9595
get
9696
{
97-
return subsId;
97+
return extension;
9898
}
9999
set
100100
{
101-
subsId = value;
101+
extension = value;
102102
}
103103
}
104104

105-
public string SecretNo
105+
public string SubsId
106106
{
107107
get
108108
{
109-
return secretNo;
109+
return subsId;
110110
}
111111
set
112112
{
113-
secretNo = value;
113+
subsId = value;
114114
}
115115
}
116116

117-
public string Extension
117+
public string SecretNo
118118
{
119119
get
120120
{
121-
return extension;
121+
return secretNo;
122122
}
123123
set
124124
{
125-
extension = value;
125+
secretNo = value;
126126
}
127127
}
128128
}

0 commit comments

Comments
 (0)