Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */
package com.microsoft.azure.management.appservice; import com.microsoft.azure.management.apigeneration.Beta; import com.microsoft.azure.management.apigeneration.Fluent; import com.microsoft.azure.management.resources.fluentcore.model.HasInner; import com.microsoft.azure.management.appservice.implementation.TldLegalAgreementInner;
An immutable client-side representation of an Azure domain legal agreement.
/** * An immutable client-side representation of an Azure domain legal agreement. */
@Fluent(ContainerName = "/Microsoft.Azure.Management.AppService.Fluent") @Beta public interface DomainLegalAgreement extends HasInner<TldLegalAgreementInner> {
Returns:unique identifier for the agreement
/** * @return unique identifier for the agreement */
String agreementKey();
Returns:agreement title
/** * @return agreement title */
String title();
Returns:agreement details
/** * @return agreement details */
String content();
Returns:url where a copy of the agreement details is hosted
/** * @return url where a copy of the agreement details is hosted */
String url(); }