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.implementation;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
import com.microsoft.azure.management.appservice.ProxyOnlyResource;
Class representing detector definition.
/**
* Class representing detector definition.
*/
@JsonFlatten
public class DiagnosticCategoryInner extends ProxyOnlyResource {
Description of the diagnostic category.
/**
* Description of the diagnostic category.
*/
@JsonProperty(value = "properties.description", access = JsonProperty.Access.WRITE_ONLY)
private String description;
Get description of the diagnostic category.
Returns: the description value
/**
* Get description of the diagnostic category.
*
* @return the description value
*/
public String description() {
return this.description;
}
}