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;
Detailed errors.
/** * Detailed errors. */
public class DefaultErrorResponseErrorDetailsItem {
Standardized string to programmatically identify the error.
/** * Standardized string to programmatically identify the error. */
@JsonProperty(value = "code", access = JsonProperty.Access.WRITE_ONLY) private String code;
Detailed error description and debugging information.
/** * Detailed error description and debugging information. */
@JsonProperty(value = "message", access = JsonProperty.Access.WRITE_ONLY) private String message;
Detailed error description and debugging information.
/** * Detailed error description and debugging information. */
@JsonProperty(value = "target", access = JsonProperty.Access.WRITE_ONLY) private String target;
Get standardized string to programmatically identify the error.
Returns:the code value
/** * Get standardized string to programmatically identify the error. * * @return the code value */
public String code() { return this.code; }
Get detailed error description and debugging information.
Returns:the message value
/** * Get detailed error description and debugging information. * * @return the message value */
public String message() { return this.message; }
Get detailed error description and debugging information.
Returns:the target value
/** * Get detailed error description and debugging information. * * @return the target value */
public String target() { return this.target; } }