All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.management.cognitiveservices.implementation.UsagesResultInner Maven / Gradle / Ivy

The newest version!
/**
 * 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.cognitiveservices.implementation;

import java.util.List;
import com.microsoft.azure.management.cognitiveservices.Usage;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * The response to a list usage request.
 */
public class UsagesResultInner {
    /**
     * The list of usages for Cognitive Service account.
     */
    @JsonProperty(value = "value", access = JsonProperty.Access.WRITE_ONLY)
    private List value;

    /**
     * Get the value value.
     *
     * @return the value value
     */
    public List value() {
        return this.value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy