forked from aliyun/aliyun-openapi-net-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LINKFACE SDK Auto Released By jhon.zh,Version:1.0.0
发布日志: 1, First release.
- Loading branch information
Showing
48 changed files
with
3,949 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
2018-08-08 Version: 1.0.0 | ||
1, First release. | ||
|
63 changes: 63 additions & 0 deletions
63
aliyun-net-sdk-linkface/LinkFace/Model/V20180720/CreateGroupRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
using Aliyun.Acs.Core; | ||
using Aliyun.Acs.Core.Http; | ||
using Aliyun.Acs.Core.Transform; | ||
using Aliyun.Acs.Core.Utils; | ||
using Aliyun.Acs.LinkFace.Transform; | ||
using Aliyun.Acs.LinkFace.Transform.V20180720; | ||
using System.Collections.Generic; | ||
|
||
namespace Aliyun.Acs.LinkFace.Model.V20180720 | ||
{ | ||
public class CreateGroupRequest : RpcAcsRequest<CreateGroupResponse> | ||
{ | ||
public CreateGroupRequest() | ||
: base("LinkFace", "2018-07-20", "CreateGroup") | ||
{ | ||
Protocol = ProtocolType.HTTPS; | ||
Method = MethodType.POST; | ||
} | ||
|
||
private string groupId; | ||
|
||
public string GroupId | ||
{ | ||
get | ||
{ | ||
return groupId; | ||
} | ||
set | ||
{ | ||
groupId = value; | ||
DictionaryUtil.Add(BodyParameters, "GroupId", value); | ||
} | ||
} | ||
|
||
public override bool CheckShowJsonItemName() | ||
{ | ||
return false; | ||
} | ||
|
||
public override CreateGroupResponse GetResponse(Core.Transform.UnmarshallerContext unmarshallerContext) | ||
{ | ||
return CreateGroupResponseUnmarshaller.Unmarshall(unmarshallerContext); | ||
} | ||
} | ||
} |
83 changes: 83 additions & 0 deletions
83
aliyun-net-sdk-linkface/LinkFace/Model/V20180720/CreateGroupResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
using Aliyun.Acs.Core; | ||
using System.Collections.Generic; | ||
|
||
namespace Aliyun.Acs.LinkFace.Model.V20180720 | ||
{ | ||
public class CreateGroupResponse : AcsResponse | ||
{ | ||
|
||
private string requestId; | ||
|
||
private int? code; | ||
|
||
private string message; | ||
|
||
private bool? success; | ||
|
||
public string RequestId | ||
{ | ||
get | ||
{ | ||
return requestId; | ||
} | ||
set | ||
{ | ||
requestId = value; | ||
} | ||
} | ||
|
||
public int? Code | ||
{ | ||
get | ||
{ | ||
return code; | ||
} | ||
set | ||
{ | ||
code = value; | ||
} | ||
} | ||
|
||
public string Message | ||
{ | ||
get | ||
{ | ||
return message; | ||
} | ||
set | ||
{ | ||
message = value; | ||
} | ||
} | ||
|
||
public bool? Success | ||
{ | ||
get | ||
{ | ||
return success; | ||
} | ||
set | ||
{ | ||
success = value; | ||
} | ||
} | ||
} | ||
} |
78 changes: 78 additions & 0 deletions
78
aliyun-net-sdk-linkface/LinkFace/Model/V20180720/DeleteFaceRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
using Aliyun.Acs.Core; | ||
using Aliyun.Acs.Core.Http; | ||
using Aliyun.Acs.Core.Transform; | ||
using Aliyun.Acs.Core.Utils; | ||
using Aliyun.Acs.LinkFace.Transform; | ||
using Aliyun.Acs.LinkFace.Transform.V20180720; | ||
using System.Collections.Generic; | ||
|
||
namespace Aliyun.Acs.LinkFace.Model.V20180720 | ||
{ | ||
public class DeleteFaceRequest : RpcAcsRequest<DeleteFaceResponse> | ||
{ | ||
public DeleteFaceRequest() | ||
: base("LinkFace", "2018-07-20", "DeleteFace") | ||
{ | ||
Protocol = ProtocolType.HTTPS; | ||
Method = MethodType.POST; | ||
} | ||
|
||
private string groupId; | ||
|
||
private string userId; | ||
|
||
public string GroupId | ||
{ | ||
get | ||
{ | ||
return groupId; | ||
} | ||
set | ||
{ | ||
groupId = value; | ||
DictionaryUtil.Add(BodyParameters, "GroupId", value); | ||
} | ||
} | ||
|
||
public string UserId | ||
{ | ||
get | ||
{ | ||
return userId; | ||
} | ||
set | ||
{ | ||
userId = value; | ||
DictionaryUtil.Add(BodyParameters, "UserId", value); | ||
} | ||
} | ||
|
||
public override bool CheckShowJsonItemName() | ||
{ | ||
return false; | ||
} | ||
|
||
public override DeleteFaceResponse GetResponse(Core.Transform.UnmarshallerContext unmarshallerContext) | ||
{ | ||
return DeleteFaceResponseUnmarshaller.Unmarshall(unmarshallerContext); | ||
} | ||
} | ||
} |
83 changes: 83 additions & 0 deletions
83
aliyun-net-sdk-linkface/LinkFace/Model/V20180720/DeleteFaceResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
using Aliyun.Acs.Core; | ||
using System.Collections.Generic; | ||
|
||
namespace Aliyun.Acs.LinkFace.Model.V20180720 | ||
{ | ||
public class DeleteFaceResponse : AcsResponse | ||
{ | ||
|
||
private string requestId; | ||
|
||
private int? code; | ||
|
||
private string message; | ||
|
||
private bool? success; | ||
|
||
public string RequestId | ||
{ | ||
get | ||
{ | ||
return requestId; | ||
} | ||
set | ||
{ | ||
requestId = value; | ||
} | ||
} | ||
|
||
public int? Code | ||
{ | ||
get | ||
{ | ||
return code; | ||
} | ||
set | ||
{ | ||
code = value; | ||
} | ||
} | ||
|
||
public string Message | ||
{ | ||
get | ||
{ | ||
return message; | ||
} | ||
set | ||
{ | ||
message = value; | ||
} | ||
} | ||
|
||
public bool? Success | ||
{ | ||
get | ||
{ | ||
return success; | ||
} | ||
set | ||
{ | ||
success = value; | ||
} | ||
} | ||
} | ||
} |
63 changes: 63 additions & 0 deletions
63
aliyun-net-sdk-linkface/LinkFace/Model/V20180720/DeleteGroupRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
using Aliyun.Acs.Core; | ||
using Aliyun.Acs.Core.Http; | ||
using Aliyun.Acs.Core.Transform; | ||
using Aliyun.Acs.Core.Utils; | ||
using Aliyun.Acs.LinkFace.Transform; | ||
using Aliyun.Acs.LinkFace.Transform.V20180720; | ||
using System.Collections.Generic; | ||
|
||
namespace Aliyun.Acs.LinkFace.Model.V20180720 | ||
{ | ||
public class DeleteGroupRequest : RpcAcsRequest<DeleteGroupResponse> | ||
{ | ||
public DeleteGroupRequest() | ||
: base("LinkFace", "2018-07-20", "DeleteGroup") | ||
{ | ||
Protocol = ProtocolType.HTTPS; | ||
Method = MethodType.POST; | ||
} | ||
|
||
private string groupId; | ||
|
||
public string GroupId | ||
{ | ||
get | ||
{ | ||
return groupId; | ||
} | ||
set | ||
{ | ||
groupId = value; | ||
DictionaryUtil.Add(BodyParameters, "GroupId", value); | ||
} | ||
} | ||
|
||
public override bool CheckShowJsonItemName() | ||
{ | ||
return false; | ||
} | ||
|
||
public override DeleteGroupResponse GetResponse(Core.Transform.UnmarshallerContext unmarshallerContext) | ||
{ | ||
return DeleteGroupResponseUnmarshaller.Unmarshall(unmarshallerContext); | ||
} | ||
} | ||
} |
Oops, something went wrong.