Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.appservice; import com.fasterxml.jackson.annotation.JsonProperty;
Options for retrieving the list of top level domain legal agreements.
/** * Options for retrieving the list of top level domain legal agreements. */
public class TopLevelDomainAgreementOption {
If <code>true</code>, then the list of agreements will include agreements for domain privacy as well; otherwise, <code>false</code>.
/** * If &lt;code&gt;true&lt;/code&gt;, then the list of agreements will * include agreements for domain privacy as well; otherwise, * &lt;code&gt;false&lt;/code&gt;. */
@JsonProperty(value = "includePrivacy") private Boolean includePrivacy;
If <code>true</code>, then the list of agreements will include agreements for domain transfer as well; otherwise, <code>false</code>.
/** * If &lt;code&gt;true&lt;/code&gt;, then the list of agreements will * include agreements for domain transfer as well; otherwise, * &lt;code&gt;false&lt;/code&gt;. */
@JsonProperty(value = "forTransfer") private Boolean forTransfer;
Get if <code>true</code>, then the list of agreements will include agreements for domain privacy as well; otherwise, <code>false</code>.
Returns:the includePrivacy value
/** * Get if &lt;code&gt;true&lt;/code&gt;, then the list of agreements will include agreements for domain privacy as well; otherwise, &lt;code&gt;false&lt;/code&gt;. * * @return the includePrivacy value */
public Boolean includePrivacy() { return this.includePrivacy; }
Set if <code>true</code>, then the list of agreements will include agreements for domain privacy as well; otherwise, <code>false</code>.
Params:
  • includePrivacy – the includePrivacy value to set
Returns:the TopLevelDomainAgreementOption object itself.
/** * Set if &lt;code&gt;true&lt;/code&gt;, then the list of agreements will include agreements for domain privacy as well; otherwise, &lt;code&gt;false&lt;/code&gt;. * * @param includePrivacy the includePrivacy value to set * @return the TopLevelDomainAgreementOption object itself. */
public TopLevelDomainAgreementOption withIncludePrivacy(Boolean includePrivacy) { this.includePrivacy = includePrivacy; return this; }
Get if <code>true</code>, then the list of agreements will include agreements for domain transfer as well; otherwise, <code>false</code>.
Returns:the forTransfer value
/** * Get if &lt;code&gt;true&lt;/code&gt;, then the list of agreements will include agreements for domain transfer as well; otherwise, &lt;code&gt;false&lt;/code&gt;. * * @return the forTransfer value */
public Boolean forTransfer() { return this.forTransfer; }
Set if <code>true</code>, then the list of agreements will include agreements for domain transfer as well; otherwise, <code>false</code>.
Params:
  • forTransfer – the forTransfer value to set
Returns:the TopLevelDomainAgreementOption object itself.
/** * Set if &lt;code&gt;true&lt;/code&gt;, then the list of agreements will include agreements for domain transfer as well; otherwise, &lt;code&gt;false&lt;/code&gt;. * * @param forTransfer the forTransfer value to set * @return the TopLevelDomainAgreementOption object itself. */
public TopLevelDomainAgreementOption withForTransfer(Boolean forTransfer) { this.forTransfer = forTransfer; return this; } }