/**
* 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.Resource;
/**
* Response for an app recovery request.
*/
@JsonFlatten
public class RecoverResponseInner extends Resource {
/**
* ID of the recovery operation. Can be used to check the status of the
* corresponding operation.
*/
@JsonProperty(value = "properties.operationId", access = JsonProperty.Access.WRITE_ONLY)
private String operationId;
/**
* Get the operationId value.
*
* @return the operationId value
*/
public String operationId() {
return this.operationId;
}
}