Skip to content

Commit 6d656e7

Browse files
committed
Generated 2020-07-01 for viapi-oxs-cross.
1 parent b7f9153 commit 6d656e7

14 files changed

+1545
-0
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2022-12-15 Version: 1.0.0
2+
- Generated 2020-07-01 for `viapi-oxs-cross`.
3+
14
2022-12-14 Version: 1.6.7
25
- Release MergeVideoModelFace.
36

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
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.viapi_oxs_cross;
26+
using Aliyun.Acs.viapi_oxs_cross.Transform;
27+
using Aliyun.Acs.viapi_oxs_cross.Transform.V20200701;
28+
29+
namespace Aliyun.Acs.viapi_oxs_cross.Model.V20200701
30+
{
31+
public class CreateSDKInstanceRequest : RpcAcsRequest<CreateSDKInstanceResponse>
32+
{
33+
public CreateSDKInstanceRequest()
34+
: base("viapi-oxs-cross", "2020-07-01", "CreateSDKInstance")
35+
{
36+
Method = MethodType.POST;
37+
}
38+
39+
private string recipe;
40+
41+
private string bundleId;
42+
43+
private string platform;
44+
45+
private long? validFrom;
46+
47+
private string pk;
48+
49+
private long? validTo;
50+
51+
public string Recipe
52+
{
53+
get
54+
{
55+
return recipe;
56+
}
57+
set
58+
{
59+
recipe = value;
60+
DictionaryUtil.Add(QueryParameters, "Recipe", value);
61+
}
62+
}
63+
64+
public string BundleId
65+
{
66+
get
67+
{
68+
return bundleId;
69+
}
70+
set
71+
{
72+
bundleId = value;
73+
DictionaryUtil.Add(QueryParameters, "BundleId", value);
74+
}
75+
}
76+
77+
public string Platform
78+
{
79+
get
80+
{
81+
return platform;
82+
}
83+
set
84+
{
85+
platform = value;
86+
DictionaryUtil.Add(QueryParameters, "Platform", value);
87+
}
88+
}
89+
90+
public long? ValidFrom
91+
{
92+
get
93+
{
94+
return validFrom;
95+
}
96+
set
97+
{
98+
validFrom = value;
99+
DictionaryUtil.Add(QueryParameters, "ValidFrom", value.ToString());
100+
}
101+
}
102+
103+
public string Pk
104+
{
105+
get
106+
{
107+
return pk;
108+
}
109+
set
110+
{
111+
pk = value;
112+
DictionaryUtil.Add(QueryParameters, "Pk", value);
113+
}
114+
}
115+
116+
public long? ValidTo
117+
{
118+
get
119+
{
120+
return validTo;
121+
}
122+
set
123+
{
124+
validTo = value;
125+
DictionaryUtil.Add(QueryParameters, "ValidTo", value.ToString());
126+
}
127+
}
128+
129+
public override bool CheckShowJsonItemName()
130+
{
131+
return false;
132+
}
133+
134+
public override CreateSDKInstanceResponse GetResponse(UnmarshallerContext unmarshallerContext)
135+
{
136+
return CreateSDKInstanceResponseUnmarshaller.Unmarshall(unmarshallerContext);
137+
}
138+
}
139+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
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.viapi_oxs_cross.Model.V20200701
24+
{
25+
public class CreateSDKInstanceResponse : AcsResponse
26+
{
27+
28+
private bool? ok;
29+
30+
private string data;
31+
32+
private string requestId;
33+
34+
private string errorMessage;
35+
36+
private string code;
37+
38+
private int? httpCode;
39+
40+
public bool? Ok
41+
{
42+
get
43+
{
44+
return ok;
45+
}
46+
set
47+
{
48+
ok = value;
49+
}
50+
}
51+
52+
public string Data
53+
{
54+
get
55+
{
56+
return data;
57+
}
58+
set
59+
{
60+
data = value;
61+
}
62+
}
63+
64+
public string RequestId
65+
{
66+
get
67+
{
68+
return requestId;
69+
}
70+
set
71+
{
72+
requestId = value;
73+
}
74+
}
75+
76+
public string ErrorMessage
77+
{
78+
get
79+
{
80+
return errorMessage;
81+
}
82+
set
83+
{
84+
errorMessage = value;
85+
}
86+
}
87+
88+
public string Code
89+
{
90+
get
91+
{
92+
return code;
93+
}
94+
set
95+
{
96+
code = value;
97+
}
98+
}
99+
100+
public int? HttpCode
101+
{
102+
get
103+
{
104+
return httpCode;
105+
}
106+
set
107+
{
108+
httpCode = value;
109+
}
110+
}
111+
}
112+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
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.viapi_oxs_cross;
26+
using Aliyun.Acs.viapi_oxs_cross.Transform;
27+
using Aliyun.Acs.viapi_oxs_cross.Transform.V20200701;
28+
29+
namespace Aliyun.Acs.viapi_oxs_cross.Model.V20200701
30+
{
31+
public class GetSDKInstanceDebugInfoRequest : RpcAcsRequest<GetSDKInstanceDebugInfoResponse>
32+
{
33+
public GetSDKInstanceDebugInfoRequest()
34+
: base("viapi-oxs-cross", "2020-07-01", "GetSDKInstanceDebugInfo")
35+
{
36+
Method = MethodType.POST;
37+
}
38+
39+
private string instanceId;
40+
41+
public string InstanceId
42+
{
43+
get
44+
{
45+
return instanceId;
46+
}
47+
set
48+
{
49+
instanceId = value;
50+
DictionaryUtil.Add(QueryParameters, "InstanceId", value);
51+
}
52+
}
53+
54+
public override bool CheckShowJsonItemName()
55+
{
56+
return false;
57+
}
58+
59+
public override GetSDKInstanceDebugInfoResponse GetResponse(UnmarshallerContext unmarshallerContext)
60+
{
61+
return GetSDKInstanceDebugInfoResponseUnmarshaller.Unmarshall(unmarshallerContext);
62+
}
63+
}
64+
}

0 commit comments

Comments
 (0)