Skip to content

Commit ae615b9

Browse files
committed
Generated 2025-04-29 for WebsiteBuild.
1 parent a6bf2cd commit ae615b9

File tree

5 files changed

+281
-0
lines changed

5 files changed

+281
-0
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-05-24 Version: 1.0.0
2+
- Generated 2025-04-29 for `WebsiteBuild`.
3+
14
2025-05-21 Version: 1.0.3
25
- Added param for ActivateLicenseResponse .
36

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
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.WebsiteBuild;
26+
using Aliyun.Acs.WebsiteBuild.Transform;
27+
using Aliyun.Acs.WebsiteBuild.Transform.V20250429;
28+
29+
namespace Aliyun.Acs.WebsiteBuild.Model.V20250429
30+
{
31+
public class OperateAppServiceForPartnerRequest : RpcAcsRequest<OperateAppServiceForPartnerResponse>
32+
{
33+
public OperateAppServiceForPartnerRequest()
34+
: base("WebsiteBuild", "2025-04-29", "OperateAppServiceForPartner")
35+
{
36+
Protocol = ProtocolType.HTTPS;
37+
Method = MethodType.POST;
38+
}
39+
40+
private string extend;
41+
42+
private string serviceType;
43+
44+
private string bizId;
45+
46+
private string operateEvent;
47+
48+
public string Extend
49+
{
50+
get
51+
{
52+
return extend;
53+
}
54+
set
55+
{
56+
extend = value;
57+
DictionaryUtil.Add(QueryParameters, "Extend", value);
58+
}
59+
}
60+
61+
public string ServiceType
62+
{
63+
get
64+
{
65+
return serviceType;
66+
}
67+
set
68+
{
69+
serviceType = value;
70+
DictionaryUtil.Add(QueryParameters, "ServiceType", value);
71+
}
72+
}
73+
74+
public string BizId
75+
{
76+
get
77+
{
78+
return bizId;
79+
}
80+
set
81+
{
82+
bizId = value;
83+
DictionaryUtil.Add(QueryParameters, "BizId", value);
84+
}
85+
}
86+
87+
public string OperateEvent
88+
{
89+
get
90+
{
91+
return operateEvent;
92+
}
93+
set
94+
{
95+
operateEvent = value;
96+
DictionaryUtil.Add(QueryParameters, "OperateEvent", value);
97+
}
98+
}
99+
100+
public override bool CheckShowJsonItemName()
101+
{
102+
return false;
103+
}
104+
105+
public override OperateAppServiceForPartnerResponse GetResponse(UnmarshallerContext unmarshallerContext)
106+
{
107+
return OperateAppServiceForPartnerResponseUnmarshaller.Unmarshall(unmarshallerContext);
108+
}
109+
}
110+
}
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
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.WebsiteBuild.Model.V20250429
24+
{
25+
public class OperateAppServiceForPartnerResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private string errorMsg;
31+
32+
private bool? success;
33+
34+
private string errorCode;
35+
36+
public string RequestId
37+
{
38+
get
39+
{
40+
return requestId;
41+
}
42+
set
43+
{
44+
requestId = value;
45+
}
46+
}
47+
48+
public string ErrorMsg
49+
{
50+
get
51+
{
52+
return errorMsg;
53+
}
54+
set
55+
{
56+
errorMsg = value;
57+
}
58+
}
59+
60+
public bool? Success
61+
{
62+
get
63+
{
64+
return success;
65+
}
66+
set
67+
{
68+
success = value;
69+
}
70+
}
71+
72+
public string ErrorCode
73+
{
74+
get
75+
{
76+
return errorCode;
77+
}
78+
set
79+
{
80+
errorCode = value;
81+
}
82+
}
83+
}
84+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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.WebsiteBuild.Model.V20250429;
24+
25+
namespace Aliyun.Acs.WebsiteBuild.Transform.V20250429
26+
{
27+
public class OperateAppServiceForPartnerResponseUnmarshaller
28+
{
29+
public static OperateAppServiceForPartnerResponse Unmarshall(UnmarshallerContext _ctx)
30+
{
31+
OperateAppServiceForPartnerResponse operateAppServiceForPartnerResponse = new OperateAppServiceForPartnerResponse();
32+
33+
operateAppServiceForPartnerResponse.HttpResponse = _ctx.HttpResponse;
34+
operateAppServiceForPartnerResponse.RequestId = _ctx.StringValue("OperateAppServiceForPartner.RequestId");
35+
operateAppServiceForPartnerResponse.ErrorMsg = _ctx.StringValue("OperateAppServiceForPartner.ErrorMsg");
36+
operateAppServiceForPartnerResponse.Success = _ctx.BooleanValue("OperateAppServiceForPartner.Success");
37+
operateAppServiceForPartnerResponse.ErrorCode = _ctx.StringValue("OperateAppServiceForPartner.ErrorCode");
38+
39+
return operateAppServiceForPartnerResponse;
40+
}
41+
}
42+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<Project Sdk="Microsoft.NET.Sdk">
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
5+
<RootNamespace>Aliyun.Acs.WebsiteBuild</RootNamespace>
6+
<Version>1.0.0</Version>
7+
<Authors>Alibaba Cloud</Authors>
8+
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
9+
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
10+
<PackageLicenseUrl>https://raw.githubusercontent.com/aliyun/aliyun-openapi-net-sdk/master/LICENSE</PackageLicenseUrl>
11+
<PackageProjectUrl>https://github.com/aliyun/aliyun-openapi-net-sdk</PackageProjectUrl>
12+
<PackageIconUrl>https://www.alibabacloud.com/favicon.ico</PackageIconUrl>
13+
<Description>Alibaba Cloud SDK for .NET</Description>
14+
<PackageReleaseNotes/>
15+
<PackageTags>alibaba aliyun SDK WebsiteBuild</PackageTags>
16+
<AssemblyName>aliyun-net-sdk-websitebuild</AssemblyName>
17+
</PropertyGroup>
18+
<ItemGroup>
19+
<ProjectReference Include="..\aliyun-net-sdk-core\aliyun-net-sdk-core.vs2017.csproj"/>
20+
</ItemGroup>
21+
<ItemGroup>
22+
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0-preview.2">
23+
<PrivateAssets>all</PrivateAssets>
24+
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
25+
</PackageReference>
26+
</ItemGroup>
27+
<ItemGroup>
28+
<PackageReference Include="Newtonsoft.Json" Version="[13.0.1,)"/>
29+
</ItemGroup>
30+
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
31+
<Reference Include="mscorlib"/>
32+
<Reference Include="System"/>
33+
<Reference Include="System.Core"/>
34+
<Reference Include="Microsoft.CSharp"/>
35+
<Reference Include="System.Data"/>
36+
<Reference Include="System.Web"/>
37+
<Reference Include="System.Drawing"/>
38+
<Reference Include="System.Security"/>
39+
<Reference Include="System.Xml"/>
40+
<Reference Include="System.Configuration"/>
41+
</ItemGroup>
42+
</Project>

0 commit comments

Comments
 (0)