/** * 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 1.0.0.0 * Changes may cause incorrect behavior and will be lost if the code is * regenerated. */ package com.microsoft.azure.keyvault.models; import com.fasterxml.jackson.annotation.JsonProperty; /** * The key vault server error. */ public class Error { /** * The error code. */ @JsonProperty(value = "code", access = JsonProperty.Access.WRITE_ONLY) private String code; /** * The error message. */ @JsonProperty(value = "message", access = JsonProperty.Access.WRITE_ONLY) private String message; /** * The innerError property. */ @JsonProperty(value = "innererror", access = JsonProperty.Access.WRITE_ONLY) private Error innerError; /** * Get the code value. * * @return the code value */ public String code() { return this.code; } /** * Get the message value. * * @return the message value */ public String message() { return this.message; } /** * Get the innerError value. * * @return the innerError value */ public Error innerError() { return this.innerError; } }