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 domain specific resource identifier.
/**
* A domain specific resource identifier.
*/
@JsonFlatten
public class IdentifierInner extends ProxyOnlyResource {
String representation of the identity.
/**
* String representation of the identity.
*/
@JsonProperty(value = "properties.id")
private String value;
Get string representation of the identity.
Returns: the value value
/**
* Get string representation of the identity.
*
* @return the value value
*/
public String value() {
return this.value;
}
Set string representation of the identity.
Params: - value – the value value to set
Returns: the IdentifierInner object itself.
/**
* Set string representation of the identity.
*
* @param value the value value to set
* @return the IdentifierInner object itself.
*/
public IdentifierInner withValue(String value) {
this.value = value;
return this;
}
}