Skip to content

Commit 33428f4

Browse files
committed
Deploy for Dypnsapi-intl.
1 parent f497c4d commit 33428f4

11 files changed

+961
-0
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2023-03-14 Version: 1.0.0
2+
- Deploy for Dypnsapi-intl.
3+
14
2023-03-14 Version: 0.0.9
25
- Update SplitVideoParts.
36

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,154 @@
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.Dypnsapi_intl;
26+
using Aliyun.Acs.Dypnsapi_intl.Transform;
27+
using Aliyun.Acs.Dypnsapi_intl.Transform.V20170725;
28+
29+
namespace Aliyun.Acs.Dypnsapi_intl.Model.V20170725
30+
{
31+
public class CheckVerificationRequest : RpcAcsRequest<CheckVerificationResponse>
32+
{
33+
public CheckVerificationRequest()
34+
: base("Dypnsapi-intl", "2017-07-25", "CheckVerification")
35+
{
36+
Method = MethodType.POST;
37+
}
38+
39+
private long? resourceOwnerId;
40+
41+
private string code;
42+
43+
private string serviceSid;
44+
45+
private string verificationId;
46+
47+
private string resourceOwnerAccount;
48+
49+
private long? ownerId;
50+
51+
private string to;
52+
53+
public long? ResourceOwnerId
54+
{
55+
get
56+
{
57+
return resourceOwnerId;
58+
}
59+
set
60+
{
61+
resourceOwnerId = value;
62+
DictionaryUtil.Add(QueryParameters, "ResourceOwnerId", value.ToString());
63+
}
64+
}
65+
66+
public string Code
67+
{
68+
get
69+
{
70+
return code;
71+
}
72+
set
73+
{
74+
code = value;
75+
DictionaryUtil.Add(QueryParameters, "Code", value);
76+
}
77+
}
78+
79+
public string ServiceSid
80+
{
81+
get
82+
{
83+
return serviceSid;
84+
}
85+
set
86+
{
87+
serviceSid = value;
88+
DictionaryUtil.Add(QueryParameters, "ServiceSid", value);
89+
}
90+
}
91+
92+
public string VerificationId
93+
{
94+
get
95+
{
96+
return verificationId;
97+
}
98+
set
99+
{
100+
verificationId = value;
101+
DictionaryUtil.Add(QueryParameters, "VerificationId", value);
102+
}
103+
}
104+
105+
public string ResourceOwnerAccount
106+
{
107+
get
108+
{
109+
return resourceOwnerAccount;
110+
}
111+
set
112+
{
113+
resourceOwnerAccount = value;
114+
DictionaryUtil.Add(QueryParameters, "ResourceOwnerAccount", value);
115+
}
116+
}
117+
118+
public long? OwnerId
119+
{
120+
get
121+
{
122+
return ownerId;
123+
}
124+
set
125+
{
126+
ownerId = value;
127+
DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString());
128+
}
129+
}
130+
131+
public string To
132+
{
133+
get
134+
{
135+
return to;
136+
}
137+
set
138+
{
139+
to = value;
140+
DictionaryUtil.Add(QueryParameters, "To", value);
141+
}
142+
}
143+
144+
public override bool CheckShowJsonItemName()
145+
{
146+
return false;
147+
}
148+
149+
public override CheckVerificationResponse GetResponse(UnmarshallerContext unmarshallerContext)
150+
{
151+
return CheckVerificationResponseUnmarshaller.Unmarshall(unmarshallerContext);
152+
}
153+
}
154+
}
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.Dypnsapi_intl.Model.V20170725
24+
{
25+
public class CheckVerificationResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private string message;
31+
32+
private string model;
33+
34+
private string code;
35+
36+
private string success;
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 Message
51+
{
52+
get
53+
{
54+
return message;
55+
}
56+
set
57+
{
58+
message = value;
59+
}
60+
}
61+
62+
public string Model
63+
{
64+
get
65+
{
66+
return model;
67+
}
68+
set
69+
{
70+
model = value;
71+
}
72+
}
73+
74+
public string Code
75+
{
76+
get
77+
{
78+
return code;
79+
}
80+
set
81+
{
82+
code = value;
83+
}
84+
}
85+
86+
public string Success
87+
{
88+
get
89+
{
90+
return success;
91+
}
92+
set
93+
{
94+
success = value;
95+
}
96+
}
97+
}
98+
}

0 commit comments

Comments
 (0)