Skip to content

Commit d86a6de

Browse files
committed
Generated 2024-03-25 for aps.
1 parent 412c448 commit d86a6de

File tree

5 files changed

+297
-0
lines changed

5 files changed

+297
-0
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-04-03 Version: 1.0.0
2+
- Generated 2024-03-25 for `aps`.
3+
14
2024-04-03 Version: 2.0.35
25
- Generated 2019-03-07 for `Cloudauth`.
36

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
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.aps;
26+
using Aliyun.Acs.aps.Transform;
27+
using Aliyun.Acs.aps.Transform.V20240325;
28+
29+
namespace Aliyun.Acs.aps.Model.V20240325
30+
{
31+
public class GetFxCustomerTypeRequest : RpcAcsRequest<GetFxCustomerTypeResponse>
32+
{
33+
public GetFxCustomerTypeRequest()
34+
: base("aps", "2024-03-25", "GetFxCustomerType")
35+
{
36+
Method = MethodType.POST;
37+
}
38+
39+
private long? uid;
40+
41+
public long? Uid
42+
{
43+
get
44+
{
45+
return uid;
46+
}
47+
set
48+
{
49+
uid = value;
50+
DictionaryUtil.Add(QueryParameters, "Uid", value.ToString());
51+
}
52+
}
53+
54+
public override GetFxCustomerTypeResponse GetResponse(UnmarshallerContext unmarshallerContext)
55+
{
56+
return GetFxCustomerTypeResponseUnmarshaller.Unmarshall(unmarshallerContext);
57+
}
58+
}
59+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
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.aps.Model.V20240325
24+
{
25+
public class GetFxCustomerTypeResponse : AcsResponse
26+
{
27+
28+
private string code;
29+
30+
private string message;
31+
32+
private string requestId;
33+
34+
private bool? success;
35+
36+
private GetFxCustomerType_Data data;
37+
38+
public string Code
39+
{
40+
get
41+
{
42+
return code;
43+
}
44+
set
45+
{
46+
code = value;
47+
}
48+
}
49+
50+
public string Message
51+
{
52+
get
53+
{
54+
return message;
55+
}
56+
set
57+
{
58+
message = value;
59+
}
60+
}
61+
62+
public string RequestId
63+
{
64+
get
65+
{
66+
return requestId;
67+
}
68+
set
69+
{
70+
requestId = value;
71+
}
72+
}
73+
74+
public bool? Success
75+
{
76+
get
77+
{
78+
return success;
79+
}
80+
set
81+
{
82+
success = value;
83+
}
84+
}
85+
86+
public GetFxCustomerType_Data Data
87+
{
88+
get
89+
{
90+
return data;
91+
}
92+
set
93+
{
94+
data = value;
95+
}
96+
}
97+
98+
public class GetFxCustomerType_Data
99+
{
100+
101+
private long? parentId;
102+
103+
private int? isSub;
104+
105+
private int? customerType;
106+
107+
public long? ParentId
108+
{
109+
get
110+
{
111+
return parentId;
112+
}
113+
set
114+
{
115+
parentId = value;
116+
}
117+
}
118+
119+
public int? IsSub
120+
{
121+
get
122+
{
123+
return isSub;
124+
}
125+
set
126+
{
127+
isSub = value;
128+
}
129+
}
130+
131+
public int? CustomerType
132+
{
133+
get
134+
{
135+
return customerType;
136+
}
137+
set
138+
{
139+
customerType = value;
140+
}
141+
}
142+
}
143+
}
144+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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.aps.Model.V20240325;
24+
25+
namespace Aliyun.Acs.aps.Transform.V20240325
26+
{
27+
public class GetFxCustomerTypeResponseUnmarshaller
28+
{
29+
public static GetFxCustomerTypeResponse Unmarshall(UnmarshallerContext _ctx)
30+
{
31+
GetFxCustomerTypeResponse getFxCustomerTypeResponse = new GetFxCustomerTypeResponse();
32+
33+
getFxCustomerTypeResponse.HttpResponse = _ctx.HttpResponse;
34+
getFxCustomerTypeResponse.Code = _ctx.StringValue("GetFxCustomerType.Code");
35+
getFxCustomerTypeResponse.Message = _ctx.StringValue("GetFxCustomerType.Message");
36+
getFxCustomerTypeResponse.RequestId = _ctx.StringValue("GetFxCustomerType.RequestId");
37+
getFxCustomerTypeResponse.Success = _ctx.BooleanValue("GetFxCustomerType.Success");
38+
39+
GetFxCustomerTypeResponse.GetFxCustomerType_Data data = new GetFxCustomerTypeResponse.GetFxCustomerType_Data();
40+
data.ParentId = _ctx.LongValue("GetFxCustomerType.Data.ParentId");
41+
data.IsSub = _ctx.IntegerValue("GetFxCustomerType.Data.IsSub");
42+
data.CustomerType = _ctx.IntegerValue("GetFxCustomerType.Data.CustomerType");
43+
getFxCustomerTypeResponse.Data = data;
44+
45+
return getFxCustomerTypeResponse;
46+
}
47+
}
48+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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.aps</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 aps</PackageTags>
16+
<AssemblyName>aliyun-net-sdk-aps</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 Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
28+
<PackageReference Include="Newtonsoft.Json" Version="[9.0.1,)"/>
29+
</ItemGroup>
30+
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
31+
<PackageReference Include="Newtonsoft.Json" Version="[6.0.1,)"/>
32+
<Reference Include="mscorlib"/>
33+
<Reference Include="System"/>
34+
<Reference Include="System.Core"/>
35+
<Reference Include="Microsoft.CSharp"/>
36+
<Reference Include="System.Data"/>
37+
<Reference Include="System.Web"/>
38+
<Reference Include="System.Drawing"/>
39+
<Reference Include="System.Security"/>
40+
<Reference Include="System.Xml"/>
41+
<Reference Include="System.Configuration"/>
42+
</ItemGroup>
43+
</Project>

0 commit comments

Comments
 (0)