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 <code>true</code>, then the list of agreements will
* include agreements for domain privacy as well; otherwise,
* <code>false</code>.
*/
@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 <code>true</code>, then the list of agreements will
* include agreements for domain transfer as well; otherwise,
* <code>false</code>.
*/
@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 <code>true</code>, then the list of agreements will include agreements for domain privacy as well; otherwise, <code>false</code>.
*
* @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 <code>true</code>, then the list of agreements will include agreements for domain privacy as well; otherwise, <code>false</code>.
*
* @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 <code>true</code>, then the list of agreements will include agreements for domain transfer as well; otherwise, <code>false</code>.
*
* @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 <code>true</code>, then the list of agreements will include agreements for domain transfer as well; otherwise, <code>false</code>.
*
* @param forTransfer the forTransfer value to set
* @return the TopLevelDomainAgreementOption object itself.
*/
public TopLevelDomainAgreementOption withForTransfer(Boolean forTransfer) {
this.forTransfer = forTransfer;
return this;
}
}