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.storage.implementation; import java.util.List; import com.fasterxml.jackson.annotation.JsonProperty;
The FileServiceItemsInner model.
/** * The FileServiceItemsInner model. */
public class FileServiceItemsInner {
List of file services returned.
/** * List of file services returned. */
@JsonProperty(value = "value", access = JsonProperty.Access.WRITE_ONLY) private List<FileServicePropertiesInner> value;
Get list of file services returned.
Returns:the value value
/** * Get list of file services returned. * * @return the value value */
public List<FileServicePropertiesInner> value() { return this.value; } }