Skip to content

Commit 3c698fd

Browse files
committed
Encrypt Dialog Content.
1 parent b126a0c commit 3c698fd

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-06-16 Version: 1.6.3
2+
- Encrypt Dialog Content.
3+
14
2021-06-15 Version: 1.9.9
25
- Add ListDevopsProjects.
36

aliyun-net-sdk-workorder/Workorder/Model/V20210610/ReplyTicketRequest.cs

+10-10
Original file line numberDiff line numberDiff line change
@@ -41,35 +41,35 @@ public ReplyTicketRequest()
4141
Method = MethodType.POST;
4242
}
4343

44-
private string secContent;
45-
4644
private string content;
4745

46+
private bool? encrypt;
47+
4848
private string ticketId;
4949

50-
public string SecContent
50+
public string Content
5151
{
5252
get
5353
{
54-
return secContent;
54+
return content;
5555
}
5656
set
5757
{
58-
secContent = value;
59-
DictionaryUtil.Add(BodyParameters, "SecContent", value);
58+
content = value;
59+
DictionaryUtil.Add(BodyParameters, "Content", value);
6060
}
6161
}
6262

63-
public string Content
63+
public bool? Encrypt
6464
{
6565
get
6666
{
67-
return content;
67+
return encrypt;
6868
}
6969
set
7070
{
71-
content = value;
72-
DictionaryUtil.Add(BodyParameters, "Content", value);
71+
encrypt = value;
72+
DictionaryUtil.Add(BodyParameters, "Encrypt", value.ToString());
7373
}
7474
}
7575

aliyun-net-sdk-workorder/aliyun-net-sdk-workorder.vs2017.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
55
<RootNamespace>Aliyun.Acs.Workorder</RootNamespace>
6-
<Version>1.6.2</Version>
6+
<Version>1.6.3</Version>
77
<Authors>Alibaba Cloud</Authors>
88
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
99
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

0 commit comments

Comments
 (0)