/**
* 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;
/**
* Identifier.
*/
@JsonFlatten
public class IdentifierInner extends Resource {
/**
* ID.
*/
@JsonProperty(value = "properties.id")
private String identifierId;
/**
* Get the identifierId value.
*
* @return the identifierId value
*/
public String identifierId() {
return this.identifierId;
}
/**
* Set the identifierId value.
*
* @param identifierId the identifierId value to set
* @return the IdentifierInner object itself.
*/
public IdentifierInner withIdentifierId(String identifierId) {
this.identifierId = identifierId;
return this;
}
}