/* * Copyright 2010-2014 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 email-2010-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.SimpleEmail.Model { /// /// The Amazon SES verification status of a list of identities. For domain identities, /// this response also contains the verification token. /// public partial class GetIdentityVerificationAttributesResponse : AmazonWebServiceResponse { private Dictionary _verificationAttributes = new Dictionary(); /// /// Gets and sets the property VerificationAttributes. /// /// A map of Identities to IdentityVerificationAttributes objects. /// /// [AWSProperty(Required=true)] public Dictionary VerificationAttributes { get { return this._verificationAttributes; } set { this._verificationAttributes = value; } } // Check to see if VerificationAttributes property is set internal bool IsSetVerificationAttributes() { return this._verificationAttributes != null && this._verificationAttributes.Count > 0; } } }