Skip to content

Commit 8bc7373

Browse files
committed
Generated 2025-08-12 for IntlMarket.
1 parent 46e664e commit 8bc7373

File tree

8 files changed

+859
-0
lines changed

8 files changed

+859
-0
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-08-20 Version: 1.0.0
2+
- Generated 2025-08-12 for `IntlMarket`.
3+
14
2025-08-11 Version: 2.1.18
25
- Add QueryDashboardNl2sql, QueryLastAccelerationEngineJob APIs.
36

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
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.IntlMarket;
26+
using Aliyun.Acs.IntlMarket.Transform;
27+
using Aliyun.Acs.IntlMarket.Transform.V20250812;
28+
29+
namespace Aliyun.Acs.IntlMarket.Model.V20250812
30+
{
31+
public class CreateOrderRequest : RpcAcsRequest<CreateOrderResponse>
32+
{
33+
public CreateOrderRequest()
34+
: base("IntlMarket", "2025-08-12", "CreateOrder")
35+
{
36+
Protocol = ProtocolType.HTTPS;
37+
Method = MethodType.POST;
38+
}
39+
40+
private string orderSouce;
41+
42+
private string commodity;
43+
44+
private string clientToken;
45+
46+
private string ownerId;
47+
48+
private string paymentType;
49+
50+
private string orderType;
51+
52+
public string OrderSouce
53+
{
54+
get
55+
{
56+
return orderSouce;
57+
}
58+
set
59+
{
60+
orderSouce = value;
61+
DictionaryUtil.Add(QueryParameters, "OrderSouce", value);
62+
}
63+
}
64+
65+
public string Commodity
66+
{
67+
get
68+
{
69+
return commodity;
70+
}
71+
set
72+
{
73+
commodity = value;
74+
DictionaryUtil.Add(QueryParameters, "Commodity", value);
75+
}
76+
}
77+
78+
public string ClientToken
79+
{
80+
get
81+
{
82+
return clientToken;
83+
}
84+
set
85+
{
86+
clientToken = value;
87+
DictionaryUtil.Add(QueryParameters, "ClientToken", value);
88+
}
89+
}
90+
91+
public string OwnerId
92+
{
93+
get
94+
{
95+
return ownerId;
96+
}
97+
set
98+
{
99+
ownerId = value;
100+
DictionaryUtil.Add(QueryParameters, "OwnerId", value);
101+
}
102+
}
103+
104+
public string PaymentType
105+
{
106+
get
107+
{
108+
return paymentType;
109+
}
110+
set
111+
{
112+
paymentType = value;
113+
DictionaryUtil.Add(QueryParameters, "PaymentType", value);
114+
}
115+
}
116+
117+
public string OrderType
118+
{
119+
get
120+
{
121+
return orderType;
122+
}
123+
set
124+
{
125+
orderType = value;
126+
DictionaryUtil.Add(QueryParameters, "OrderType", value);
127+
}
128+
}
129+
130+
public override bool CheckShowJsonItemName()
131+
{
132+
return false;
133+
}
134+
135+
public override CreateOrderResponse GetResponse(UnmarshallerContext unmarshallerContext)
136+
{
137+
return CreateOrderResponseUnmarshaller.Unmarshall(unmarshallerContext);
138+
}
139+
}
140+
}
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
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.IntlMarket.Model.V20250812
24+
{
25+
public class CreateOrderResponse : AcsResponse
26+
{
27+
28+
private string orderId;
29+
30+
private string requestId;
31+
32+
private List<string> instanceIds;
33+
34+
public string OrderId
35+
{
36+
get
37+
{
38+
return orderId;
39+
}
40+
set
41+
{
42+
orderId = value;
43+
}
44+
}
45+
46+
public string RequestId
47+
{
48+
get
49+
{
50+
return requestId;
51+
}
52+
set
53+
{
54+
requestId = value;
55+
}
56+
}
57+
58+
public List<string> InstanceIds
59+
{
60+
get
61+
{
62+
return instanceIds;
63+
}
64+
set
65+
{
66+
instanceIds = value;
67+
}
68+
}
69+
}
70+
}
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
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.IntlMarket;
26+
using Aliyun.Acs.IntlMarket.Transform;
27+
using Aliyun.Acs.IntlMarket.Transform.V20250812;
28+
29+
namespace Aliyun.Acs.IntlMarket.Model.V20250812
30+
{
31+
public class DescribePriceRequest : RpcAcsRequest<DescribePriceResponse>
32+
{
33+
public DescribePriceRequest()
34+
: base("IntlMarket", "2025-08-12", "DescribePrice")
35+
{
36+
Protocol = ProtocolType.HTTPS;
37+
Method = MethodType.POST;
38+
}
39+
40+
private string commodity;
41+
42+
private string orderType;
43+
44+
public string Commodity
45+
{
46+
get
47+
{
48+
return commodity;
49+
}
50+
set
51+
{
52+
commodity = value;
53+
DictionaryUtil.Add(QueryParameters, "Commodity", value);
54+
}
55+
}
56+
57+
public string OrderType
58+
{
59+
get
60+
{
61+
return orderType;
62+
}
63+
set
64+
{
65+
orderType = value;
66+
DictionaryUtil.Add(QueryParameters, "OrderType", value);
67+
}
68+
}
69+
70+
public override bool CheckShowJsonItemName()
71+
{
72+
return false;
73+
}
74+
75+
public override DescribePriceResponse GetResponse(UnmarshallerContext unmarshallerContext)
76+
{
77+
return DescribePriceResponseUnmarshaller.Unmarshall(unmarshallerContext);
78+
}
79+
}
80+
}

0 commit comments

Comments
 (0)