Skip to content

Commit fe2482a

Browse files
committed
Generated 2019-01-23 for Copyright.
1 parent f5716d8 commit fe2482a

File tree

200 files changed

+19013
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

200 files changed

+19013
-0
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2022-02-15 Version: 1.0.0
2+
- Generated 2019-01-23 for `Copyright`.
3+
14
2022-02-14 Version: 0.0.1
25
- Generated 2020-06-29 for `alinlp`.
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.Copyright;
26+
using Aliyun.Acs.Copyright.Transform;
27+
using Aliyun.Acs.Copyright.Transform.V20190123;
28+
29+
namespace Aliyun.Acs.Copyright.Model.V20190123
30+
{
31+
public class AddCopyrightFilesRequest : RpcAcsRequest<AddCopyrightFilesResponse>
32+
{
33+
public AddCopyrightFilesRequest()
34+
: base("Copyright", "2019-01-23", "AddCopyrightFiles")
35+
{
36+
Method = MethodType.POST;
37+
}
38+
39+
private string extInfo;
40+
41+
private string copyrightOwnersList;
42+
43+
private string bizType;
44+
45+
private string contactInfo;
46+
47+
private string files;
48+
49+
private string swtype;
50+
51+
public string ExtInfo
52+
{
53+
get
54+
{
55+
return extInfo;
56+
}
57+
set
58+
{
59+
extInfo = value;
60+
DictionaryUtil.Add(BodyParameters, "ExtInfo", value);
61+
}
62+
}
63+
64+
public string CopyrightOwnersList
65+
{
66+
get
67+
{
68+
return copyrightOwnersList;
69+
}
70+
set
71+
{
72+
copyrightOwnersList = value;
73+
DictionaryUtil.Add(BodyParameters, "CopyrightOwnersList", value);
74+
}
75+
}
76+
77+
public string BizType
78+
{
79+
get
80+
{
81+
return bizType;
82+
}
83+
set
84+
{
85+
bizType = value;
86+
DictionaryUtil.Add(BodyParameters, "BizType", value);
87+
}
88+
}
89+
90+
public string ContactInfo
91+
{
92+
get
93+
{
94+
return contactInfo;
95+
}
96+
set
97+
{
98+
contactInfo = value;
99+
DictionaryUtil.Add(BodyParameters, "ContactInfo", value);
100+
}
101+
}
102+
103+
public string Files
104+
{
105+
get
106+
{
107+
return files;
108+
}
109+
set
110+
{
111+
files = value;
112+
DictionaryUtil.Add(BodyParameters, "Files", value);
113+
}
114+
}
115+
116+
public string Swtype
117+
{
118+
get
119+
{
120+
return swtype;
121+
}
122+
set
123+
{
124+
swtype = value;
125+
DictionaryUtil.Add(BodyParameters, "Swtype", value);
126+
}
127+
}
128+
129+
public override bool CheckShowJsonItemName()
130+
{
131+
return false;
132+
}
133+
134+
public override AddCopyrightFilesResponse GetResponse(UnmarshallerContext unmarshallerContext)
135+
{
136+
return AddCopyrightFilesResponseUnmarshaller.Unmarshall(unmarshallerContext);
137+
}
138+
}
139+
}
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+
21+
using Aliyun.Acs.Core;
22+
23+
namespace Aliyun.Acs.Copyright.Model.V20190123
24+
{
25+
public class AddCopyrightFilesResponse : AcsResponse
26+
{
27+
28+
private string token;
29+
30+
private string requestId;
31+
32+
private bool? success;
33+
34+
public string Token
35+
{
36+
get
37+
{
38+
return token;
39+
}
40+
set
41+
{
42+
token = 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 bool? Success
59+
{
60+
get
61+
{
62+
return success;
63+
}
64+
set
65+
{
66+
success = value;
67+
}
68+
}
69+
}
70+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
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.Copyright;
26+
using Aliyun.Acs.Copyright.Transform;
27+
using Aliyun.Acs.Copyright.Transform.V20190123;
28+
29+
namespace Aliyun.Acs.Copyright.Model.V20190123
30+
{
31+
public class BatchAsynchronousAddRequest : RpcAcsRequest<BatchAsynchronousAddResponse>
32+
{
33+
public BatchAsynchronousAddRequest()
34+
: base("Copyright", "2019-01-23", "BatchAsynchronousAdd")
35+
{
36+
Method = MethodType.POST;
37+
}
38+
39+
private string cacheKey;
40+
41+
private string planId;
42+
43+
public string CacheKey
44+
{
45+
get
46+
{
47+
return cacheKey;
48+
}
49+
set
50+
{
51+
cacheKey = value;
52+
DictionaryUtil.Add(QueryParameters, "CacheKey", value);
53+
}
54+
}
55+
56+
public string PlanId
57+
{
58+
get
59+
{
60+
return planId;
61+
}
62+
set
63+
{
64+
planId = value;
65+
DictionaryUtil.Add(QueryParameters, "PlanId", value);
66+
}
67+
}
68+
69+
public override bool CheckShowJsonItemName()
70+
{
71+
return false;
72+
}
73+
74+
public override BatchAsynchronousAddResponse GetResponse(UnmarshallerContext unmarshallerContext)
75+
{
76+
return BatchAsynchronousAddResponseUnmarshaller.Unmarshall(unmarshallerContext);
77+
}
78+
}
79+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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+
23+
namespace Aliyun.Acs.Copyright.Model.V20190123
24+
{
25+
public class BatchAsynchronousAddResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private List<string> id;
31+
32+
public string RequestId
33+
{
34+
get
35+
{
36+
return requestId;
37+
}
38+
set
39+
{
40+
requestId = value;
41+
}
42+
}
43+
44+
public List<string> Id
45+
{
46+
get
47+
{
48+
return id;
49+
}
50+
set
51+
{
52+
id = value;
53+
}
54+
}
55+
}
56+
}

0 commit comments

Comments
 (0)