/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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.
*/
/*
* Do not modify this file. This file is generated from the rekognition-2016-06-27.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Rekognition.Model
{
///
/// This is the response object from the DisassociateFaces operation.
///
public partial class DisassociateFacesResponse : AmazonWebServiceResponse
{
private List _disassociatedFaces = new List();
private List _unsuccessfulFaceDisassociations = new List();
private UserStatus _userStatus;
///
/// Gets and sets the property DisassociatedFaces.
///
/// An array of DissociatedFace objects containing FaceIds that are successfully disassociated
/// with the UserID is returned. Returned if the DisassociatedFaces action is successful.
///
///
[AWSProperty(Min=0, Max=100)]
public List DisassociatedFaces
{
get { return this._disassociatedFaces; }
set { this._disassociatedFaces = value; }
}
// Check to see if DisassociatedFaces property is set
internal bool IsSetDisassociatedFaces()
{
return this._disassociatedFaces != null && this._disassociatedFaces.Count > 0;
}
///
/// Gets and sets the property UnsuccessfulFaceDisassociations.
///
/// An array of UnsuccessfulDisassociation objects containing FaceIds that are not successfully
/// associated, along with the reasons for the failure to associate. Returned if the DisassociateFaces
/// action is successful.
///
///
[AWSProperty(Min=0, Max=500)]
public List UnsuccessfulFaceDisassociations
{
get { return this._unsuccessfulFaceDisassociations; }
set { this._unsuccessfulFaceDisassociations = value; }
}
// Check to see if UnsuccessfulFaceDisassociations property is set
internal bool IsSetUnsuccessfulFaceDisassociations()
{
return this._unsuccessfulFaceDisassociations != null && this._unsuccessfulFaceDisassociations.Count > 0;
}
///
/// Gets and sets the property UserStatus.
///
/// The status of an update made to a User. Reflects if the User has been updated for
/// every requested change.
///
///
public UserStatus UserStatus
{
get { return this._userStatus; }
set { this._userStatus = value; }
}
// Check to see if UserStatus property is set
internal bool IsSetUserStatus()
{
return this._userStatus != null;
}
}
}