Skip to content

Commit 8bd76cb

Browse files
committed
Update DescribeApiMetering API.
1 parent 395123f commit 8bd76cb

File tree

4 files changed

+5
-327
lines changed

4 files changed

+5
-327
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-12-13 Version: 2.0.32
2+
- Update DescribeApiMetering API.
3+
14
2024-12-06 Version: 2.16.29
25
-Release GetJobDetail, ListJobInfo.
36
-Modify GetTranscodeTask.

aliyun-net-sdk-market/Market/Model/V20151101/DescribeOrderForIsvResponse.cs

-300
Original file line numberDiff line numberDiff line change
@@ -24,305 +24,5 @@ namespace Aliyun.Acs.Market.Model.V20151101
2424
{
2525
public class DescribeOrderForIsvResponse : AcsResponse
2626
{
27-
28-
private string productName;
29-
30-
private float? originalPrice;
31-
32-
private long? aliUid;
33-
34-
private float? couponPrice;
35-
36-
private long? accountQuantity;
37-
38-
private string periodType;
39-
40-
private string payStatus;
41-
42-
private float? paymentPrice;
43-
44-
private string orderStatus;
45-
46-
private string productSkuCode;
47-
48-
private long? paidOn;
49-
50-
private string components;
51-
52-
private long? createdOn;
53-
54-
private string orderType;
55-
56-
private float? totalPrice;
57-
58-
private int? quantity;
59-
60-
private long? orderId;
61-
62-
private string productCode;
63-
64-
private string requestId;
65-
66-
private List<string> instanceIds;
67-
68-
[JsonProperty(PropertyName = "ProductName")]
69-
public string ProductName
70-
{
71-
get
72-
{
73-
return productName;
74-
}
75-
set
76-
{
77-
productName = value;
78-
}
79-
}
80-
81-
[JsonProperty(PropertyName = "OriginalPrice")]
82-
public float? OriginalPrice
83-
{
84-
get
85-
{
86-
return originalPrice;
87-
}
88-
set
89-
{
90-
originalPrice = value;
91-
}
92-
}
93-
94-
[JsonProperty(PropertyName = "AliUid")]
95-
public long? AliUid
96-
{
97-
get
98-
{
99-
return aliUid;
100-
}
101-
set
102-
{
103-
aliUid = value;
104-
}
105-
}
106-
107-
[JsonProperty(PropertyName = "CouponPrice")]
108-
public float? CouponPrice
109-
{
110-
get
111-
{
112-
return couponPrice;
113-
}
114-
set
115-
{
116-
couponPrice = value;
117-
}
118-
}
119-
120-
[JsonProperty(PropertyName = "AccountQuantity")]
121-
public long? AccountQuantity
122-
{
123-
get
124-
{
125-
return accountQuantity;
126-
}
127-
set
128-
{
129-
accountQuantity = value;
130-
}
131-
}
132-
133-
[JsonProperty(PropertyName = "PeriodType")]
134-
public string PeriodType
135-
{
136-
get
137-
{
138-
return periodType;
139-
}
140-
set
141-
{
142-
periodType = value;
143-
}
144-
}
145-
146-
[JsonProperty(PropertyName = "PayStatus")]
147-
public string PayStatus
148-
{
149-
get
150-
{
151-
return payStatus;
152-
}
153-
set
154-
{
155-
payStatus = value;
156-
}
157-
}
158-
159-
[JsonProperty(PropertyName = "PaymentPrice")]
160-
public float? PaymentPrice
161-
{
162-
get
163-
{
164-
return paymentPrice;
165-
}
166-
set
167-
{
168-
paymentPrice = value;
169-
}
170-
}
171-
172-
[JsonProperty(PropertyName = "OrderStatus")]
173-
public string OrderStatus
174-
{
175-
get
176-
{
177-
return orderStatus;
178-
}
179-
set
180-
{
181-
orderStatus = value;
182-
}
183-
}
184-
185-
[JsonProperty(PropertyName = "ProductSkuCode")]
186-
public string ProductSkuCode
187-
{
188-
get
189-
{
190-
return productSkuCode;
191-
}
192-
set
193-
{
194-
productSkuCode = value;
195-
}
196-
}
197-
198-
[JsonProperty(PropertyName = "PaidOn")]
199-
public long? PaidOn
200-
{
201-
get
202-
{
203-
return paidOn;
204-
}
205-
set
206-
{
207-
paidOn = value;
208-
}
209-
}
210-
211-
[JsonProperty(PropertyName = "Components")]
212-
public string Components
213-
{
214-
get
215-
{
216-
return components;
217-
}
218-
set
219-
{
220-
components = value;
221-
}
222-
}
223-
224-
[JsonProperty(PropertyName = "CreatedOn")]
225-
public long? CreatedOn
226-
{
227-
get
228-
{
229-
return createdOn;
230-
}
231-
set
232-
{
233-
createdOn = value;
234-
}
235-
}
236-
237-
[JsonProperty(PropertyName = "OrderType")]
238-
public string OrderType
239-
{
240-
get
241-
{
242-
return orderType;
243-
}
244-
set
245-
{
246-
orderType = value;
247-
}
248-
}
249-
250-
[JsonProperty(PropertyName = "TotalPrice")]
251-
public float? TotalPrice
252-
{
253-
get
254-
{
255-
return totalPrice;
256-
}
257-
set
258-
{
259-
totalPrice = value;
260-
}
261-
}
262-
263-
[JsonProperty(PropertyName = "Quantity")]
264-
public int? Quantity
265-
{
266-
get
267-
{
268-
return quantity;
269-
}
270-
set
271-
{
272-
quantity = value;
273-
}
274-
}
275-
276-
[JsonProperty(PropertyName = "OrderId")]
277-
public long? OrderId
278-
{
279-
get
280-
{
281-
return orderId;
282-
}
283-
set
284-
{
285-
orderId = value;
286-
}
287-
}
288-
289-
[JsonProperty(PropertyName = "ProductCode")]
290-
public string ProductCode
291-
{
292-
get
293-
{
294-
return productCode;
295-
}
296-
set
297-
{
298-
productCode = value;
299-
}
300-
}
301-
302-
[JsonProperty(PropertyName = "RequestId")]
303-
public string RequestId
304-
{
305-
get
306-
{
307-
return requestId;
308-
}
309-
set
310-
{
311-
requestId = value;
312-
}
313-
}
314-
315-
[JsonProperty(PropertyName = "InstanceIds")]
316-
public List<string> InstanceIds
317-
{
318-
get
319-
{
320-
return instanceIds;
321-
}
322-
set
323-
{
324-
instanceIds = value;
325-
}
326-
}
32727
}
32828
}

aliyun-net-sdk-market/Market/Transform/V20151101/DescribeOrderForIsvResponseUnmarshaller.cs

+1-26
Original file line numberDiff line numberDiff line change
@@ -30,32 +30,7 @@ public static DescribeOrderForIsvResponse Unmarshall(UnmarshallerContext _ctx)
3030
{
3131
DescribeOrderForIsvResponse describeOrderForIsvResponse = new DescribeOrderForIsvResponse();
3232

33-
describeOrderForIsvResponse.HttpResponse = _ctx.HttpResponse;
34-
describeOrderForIsvResponse.ProductName = _ctx.StringValue("DescribeOrderForIsv.ProductName");
35-
describeOrderForIsvResponse.OriginalPrice = _ctx.FloatValue("DescribeOrderForIsv.OriginalPrice");
36-
describeOrderForIsvResponse.AliUid = _ctx.LongValue("DescribeOrderForIsv.AliUid");
37-
describeOrderForIsvResponse.CouponPrice = _ctx.FloatValue("DescribeOrderForIsv.CouponPrice");
38-
describeOrderForIsvResponse.AccountQuantity = _ctx.LongValue("DescribeOrderForIsv.AccountQuantity");
39-
describeOrderForIsvResponse.PeriodType = _ctx.StringValue("DescribeOrderForIsv.PeriodType");
40-
describeOrderForIsvResponse.PayStatus = _ctx.StringValue("DescribeOrderForIsv.PayStatus");
41-
describeOrderForIsvResponse.PaymentPrice = _ctx.FloatValue("DescribeOrderForIsv.PaymentPrice");
42-
describeOrderForIsvResponse.OrderStatus = _ctx.StringValue("DescribeOrderForIsv.OrderStatus");
43-
describeOrderForIsvResponse.ProductSkuCode = _ctx.StringValue("DescribeOrderForIsv.ProductSkuCode");
44-
describeOrderForIsvResponse.PaidOn = _ctx.LongValue("DescribeOrderForIsv.PaidOn");
45-
describeOrderForIsvResponse.Components = _ctx.StringValue("DescribeOrderForIsv.Components");
46-
describeOrderForIsvResponse.CreatedOn = _ctx.LongValue("DescribeOrderForIsv.CreatedOn");
47-
describeOrderForIsvResponse.OrderType = _ctx.StringValue("DescribeOrderForIsv.OrderType");
48-
describeOrderForIsvResponse.TotalPrice = _ctx.FloatValue("DescribeOrderForIsv.TotalPrice");
49-
describeOrderForIsvResponse.Quantity = _ctx.IntegerValue("DescribeOrderForIsv.Quantity");
50-
describeOrderForIsvResponse.OrderId = _ctx.LongValue("DescribeOrderForIsv.OrderId");
51-
describeOrderForIsvResponse.ProductCode = _ctx.StringValue("DescribeOrderForIsv.ProductCode");
52-
describeOrderForIsvResponse.RequestId = _ctx.StringValue("DescribeOrderForIsv.RequestId");
53-
54-
List<string> describeOrderForIsvResponse_instanceIds = new List<string>();
55-
for (int i = 0; i < _ctx.Length("DescribeOrderForIsv.InstanceIds.Length"); i++) {
56-
describeOrderForIsvResponse_instanceIds.Add(_ctx.StringValue("DescribeOrderForIsv.InstanceIds["+ i +"]"));
57-
}
58-
describeOrderForIsvResponse.InstanceIds = describeOrderForIsvResponse_instanceIds;
33+
describeOrderForIsvResponse.HttpResponse = _ctx.HttpResponse;
5934

6035
return describeOrderForIsvResponse;
6136
}

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
55
<RootNamespace>Aliyun.Acs.Market</RootNamespace>
6-
<Version>2.0.31</Version>
6+
<Version>2.0.32</Version>
77
<Authors>Alibaba Cloud</Authors>
88
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
99
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

0 commit comments

Comments
 (0)