Skip to content

Commit

Permalink
LINKFACE SDK Auto Released By jhon.zh,Version:1.0.0
Browse files Browse the repository at this point in the history
发布日志:
1, First release.
  • Loading branch information
jxyowen committed Aug 8, 2018
1 parent 832038a commit 99dc715
Show file tree
Hide file tree
Showing 48 changed files with 3,949 additions and 0 deletions.
3 changes: 3 additions & 0 deletions aliyun-net-sdk-linkface/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
2018-08-08 Version: 1.0.0
1, First release.

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);
}
}
}
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;
}
}
}
}
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);
}
}
}
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;
}
}
}
}
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);
}
}
}
Loading

0 comments on commit 99dc715

Please sign in to comment.