/* * 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 route53domains-2014-05-15.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.Route53Domains.Model { /// /// This is the response object from the ResendContactReachabilityEmail operation. /// public partial class ResendContactReachabilityEmailResponse : AmazonWebServiceResponse { private string _domainName; private string _emailAddress; private bool? _isAlreadyVerified; /// /// Gets and sets the property DomainName. /// /// The domain name for which you requested a confirmation email. /// /// [AWSProperty(Max=255)] public string DomainName { get { return this._domainName; } set { this._domainName = value; } } // Check to see if DomainName property is set internal bool IsSetDomainName() { return this._domainName != null; } /// /// Gets and sets the property EmailAddress. /// /// The email address for the registrant contact at the time that we sent the verification /// email. /// /// [AWSProperty(Max=254)] public string EmailAddress { get { return this._emailAddress; } set { this._emailAddress = value; } } // Check to see if EmailAddress property is set internal bool IsSetEmailAddress() { return this._emailAddress != null; } /// /// Gets and sets the property IsAlreadyVerified. /// /// True if the email address for the registrant contact has already been /// verified, and false otherwise. If the email address has already been /// verified, we don't send another confirmation email. /// /// public bool IsAlreadyVerified { get { return this._isAlreadyVerified.GetValueOrDefault(); } set { this._isAlreadyVerified = value; } } // Check to see if IsAlreadyVerified property is set internal bool IsSetIsAlreadyVerified() { return this._isAlreadyVerified.HasValue; } } }