Skip to content

Commit 1d806d8

Browse files
committed
Added param for ActivateLicenseResponse .
1 parent 15ab05f commit 1d806d8

File tree

50 files changed

+7409
-0
lines changed

Some content is hidden

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

50 files changed

+7409
-0
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-07-10 Version: 1.0.0
2+
- Added param for ActivateLicenseResponse .
3+
14
2024-07-05 Version: 3.9.56
25
- Update to support new apis.
36

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
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.mseap;
26+
using Aliyun.Acs.mseap.Transform;
27+
using Aliyun.Acs.mseap.Transform.V20210118;
28+
29+
namespace Aliyun.Acs.mseap.Model.V20210118
30+
{
31+
public class ActivateLicenseRequest : RpcAcsRequest<ActivateLicenseResponse>
32+
{
33+
public ActivateLicenseRequest()
34+
: base("mseap", "2021-01-18", "ActivateLicense")
35+
{
36+
Method = MethodType.POST;
37+
}
38+
39+
private string licenseNo;
40+
41+
private string bizType;
42+
43+
private string licensePublisher;
44+
45+
private string bizId;
46+
47+
private string licenseCode;
48+
49+
public string LicenseNo
50+
{
51+
get
52+
{
53+
return licenseNo;
54+
}
55+
set
56+
{
57+
licenseNo = value;
58+
DictionaryUtil.Add(QueryParameters, "LicenseNo", value);
59+
}
60+
}
61+
62+
public string BizType
63+
{
64+
get
65+
{
66+
return bizType;
67+
}
68+
set
69+
{
70+
bizType = value;
71+
DictionaryUtil.Add(QueryParameters, "BizType", value);
72+
}
73+
}
74+
75+
public string LicensePublisher
76+
{
77+
get
78+
{
79+
return licensePublisher;
80+
}
81+
set
82+
{
83+
licensePublisher = value;
84+
DictionaryUtil.Add(QueryParameters, "LicensePublisher", value);
85+
}
86+
}
87+
88+
public string BizId
89+
{
90+
get
91+
{
92+
return bizId;
93+
}
94+
set
95+
{
96+
bizId = value;
97+
DictionaryUtil.Add(QueryParameters, "BizId", value);
98+
}
99+
}
100+
101+
public string LicenseCode
102+
{
103+
get
104+
{
105+
return licenseCode;
106+
}
107+
set
108+
{
109+
licenseCode = value;
110+
DictionaryUtil.Add(QueryParameters, "LicenseCode", value);
111+
}
112+
}
113+
114+
public override bool CheckShowJsonItemName()
115+
{
116+
return false;
117+
}
118+
119+
public override ActivateLicenseResponse GetResponse(UnmarshallerContext unmarshallerContext)
120+
{
121+
return ActivateLicenseResponseUnmarshaller.Unmarshall(unmarshallerContext);
122+
}
123+
}
124+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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.mseap.Model.V20210118
24+
{
25+
public class ActivateLicenseResponse : AcsResponse
26+
{
27+
28+
private bool? data;
29+
30+
private string requestId;
31+
32+
public bool? Data
33+
{
34+
get
35+
{
36+
return data;
37+
}
38+
set
39+
{
40+
data = value;
41+
}
42+
}
43+
44+
public string RequestId
45+
{
46+
get
47+
{
48+
return requestId;
49+
}
50+
set
51+
{
52+
requestId = value;
53+
}
54+
}
55+
}
56+
}

0 commit comments

Comments
 (0)