Skip to content

Commit a6bf2cd

Browse files
committed
Added param for ActivateLicenseResponse .
1 parent 10d902e commit a6bf2cd

File tree

5 files changed

+240
-1
lines changed

5 files changed

+240
-1
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-05-21 Version: 1.0.3
2+
- Added param for ActivateLicenseResponse .
3+
14
2025-05-20 Version: 1.0.2
25
- Added param for ActivateLicenseResponse .
36

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
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 GetPlatformUserInfoForPartnerRequest : RpcAcsRequest<GetPlatformUserInfoForPartnerResponse>
32+
{
33+
public GetPlatformUserInfoForPartnerRequest()
34+
: base("mseap", "2021-01-18", "GetPlatformUserInfoForPartner")
35+
{
36+
Protocol = ProtocolType.HTTPS;
37+
Method = MethodType.POST;
38+
}
39+
40+
private string userId;
41+
42+
private string appId;
43+
44+
private string platformType;
45+
46+
public string UserId
47+
{
48+
get
49+
{
50+
return userId;
51+
}
52+
set
53+
{
54+
userId = value;
55+
DictionaryUtil.Add(QueryParameters, "UserId", value);
56+
}
57+
}
58+
59+
public string AppId
60+
{
61+
get
62+
{
63+
return appId;
64+
}
65+
set
66+
{
67+
appId = value;
68+
DictionaryUtil.Add(QueryParameters, "AppId", value);
69+
}
70+
}
71+
72+
public string PlatformType
73+
{
74+
get
75+
{
76+
return platformType;
77+
}
78+
set
79+
{
80+
platformType = value;
81+
DictionaryUtil.Add(QueryParameters, "PlatformType", value);
82+
}
83+
}
84+
85+
public override bool CheckShowJsonItemName()
86+
{
87+
return false;
88+
}
89+
90+
public override GetPlatformUserInfoForPartnerResponse GetResponse(UnmarshallerContext unmarshallerContext)
91+
{
92+
return GetPlatformUserInfoForPartnerResponseUnmarshaller.Unmarshall(unmarshallerContext);
93+
}
94+
}
95+
}
Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
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 GetPlatformUserInfoForPartnerResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private string errorMsg;
31+
32+
private bool? success;
33+
34+
private string encryptedOpenId;
35+
36+
private string encryptedUnionId;
37+
38+
public string RequestId
39+
{
40+
get
41+
{
42+
return requestId;
43+
}
44+
set
45+
{
46+
requestId = value;
47+
}
48+
}
49+
50+
public string ErrorMsg
51+
{
52+
get
53+
{
54+
return errorMsg;
55+
}
56+
set
57+
{
58+
errorMsg = value;
59+
}
60+
}
61+
62+
public bool? Success
63+
{
64+
get
65+
{
66+
return success;
67+
}
68+
set
69+
{
70+
success = value;
71+
}
72+
}
73+
74+
public string EncryptedOpenId
75+
{
76+
get
77+
{
78+
return encryptedOpenId;
79+
}
80+
set
81+
{
82+
encryptedOpenId = value;
83+
}
84+
}
85+
86+
public string EncryptedUnionId
87+
{
88+
get
89+
{
90+
return encryptedUnionId;
91+
}
92+
set
93+
{
94+
encryptedUnionId = value;
95+
}
96+
}
97+
}
98+
}
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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;
20+
using System.Collections.Generic;
21+
22+
using Aliyun.Acs.Core.Transform;
23+
using Aliyun.Acs.mseap.Model.V20210118;
24+
25+
namespace Aliyun.Acs.mseap.Transform.V20210118
26+
{
27+
public class GetPlatformUserInfoForPartnerResponseUnmarshaller
28+
{
29+
public static GetPlatformUserInfoForPartnerResponse Unmarshall(UnmarshallerContext _ctx)
30+
{
31+
GetPlatformUserInfoForPartnerResponse getPlatformUserInfoForPartnerResponse = new GetPlatformUserInfoForPartnerResponse();
32+
33+
getPlatformUserInfoForPartnerResponse.HttpResponse = _ctx.HttpResponse;
34+
getPlatformUserInfoForPartnerResponse.RequestId = _ctx.StringValue("GetPlatformUserInfoForPartner.RequestId");
35+
getPlatformUserInfoForPartnerResponse.ErrorMsg = _ctx.StringValue("GetPlatformUserInfoForPartner.ErrorMsg");
36+
getPlatformUserInfoForPartnerResponse.Success = _ctx.BooleanValue("GetPlatformUserInfoForPartner.Success");
37+
getPlatformUserInfoForPartnerResponse.EncryptedOpenId = _ctx.StringValue("GetPlatformUserInfoForPartner.EncryptedOpenId");
38+
getPlatformUserInfoForPartnerResponse.EncryptedUnionId = _ctx.StringValue("GetPlatformUserInfoForPartner.EncryptedUnionId");
39+
40+
return getPlatformUserInfoForPartnerResponse;
41+
}
42+
}
43+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
55
<RootNamespace>Aliyun.Acs.mseap</RootNamespace>
6-
<Version>1.0.2</Version>
6+
<Version>1.0.3</Version>
77
<Authors>Alibaba Cloud</Authors>
88
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
99
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

0 commit comments

Comments
 (0)