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;
A snapshot of an app.
/**
* A snapshot of an app.
*/
@JsonFlatten
public class SnapshotInner extends ProxyOnlyResource {
The time the snapshot was taken.
/**
* The time the snapshot was taken.
*/
@JsonProperty(value = "properties.time", access = JsonProperty.Access.WRITE_ONLY)
private String time;
Get the time the snapshot was taken.
Returns: the time value
/**
* Get the time the snapshot was taken.
*
* @return the time value
*/
public String time() {
return this.time;
}
}