
com.microsoft.azure.cognitiveservices.vision.computervision.models.ReadHeaders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-cognitiveservices-computervision Show documentation
Show all versions of azure-cognitiveservices-computervision Show documentation
This package contains Microsoft Cognitive Service Computer Vision SDK.
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.cognitiveservices.vision.computervision.models;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Defines headers for Read operation.
*/
public class ReadHeaders {
/**
* URL to query for status of the operation. The operation ID will expire
* in 48 hours.
*/
@JsonProperty(value = "Operation-Location")
private String operationLocation;
/**
* Get the operationLocation value.
*
* @return the operationLocation value
*/
public String operationLocation() {
return this.operationLocation;
}
/**
* Set the operationLocation value.
*
* @param operationLocation the operationLocation value to set
* @return the ReadHeaders object itself.
*/
public ReadHeaders withOperationLocation(String operationLocation) {
this.operationLocation = operationLocation;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy