/** * 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 org.joda.time.DateTime; import com.fasterxml.jackson.annotation.JsonProperty; import com.microsoft.rest.serializer.JsonFlatten; import com.microsoft.azure.Resource; /** * A snapshot of a web app configuration. */ @JsonFlatten public class SiteConfigurationSnapshotInfoInner extends Resource { /** * The time the snapshot was taken. */ @JsonProperty(value = "properties.time", access = JsonProperty.Access.WRITE_ONLY) private DateTime time; /** * The id of the snapshot. */ @JsonProperty(value = "properties.id", access = JsonProperty.Access.WRITE_ONLY) private Integer siteConfigurationSnapshotInfoId; /** * Get the time value. * * @return the time value */ public DateTime time() { return this.time; } /** * Get the siteConfigurationSnapshotInfoId value. * * @return the siteConfigurationSnapshotInfoId value */ public Integer siteConfigurationSnapshotInfoId() { return this.siteConfigurationSnapshotInfoId; } }