Class ComputerVisionInnerError
- java.lang.Object
-
- com.microsoft.azure.cognitiveservices.vision.computervision.models.ComputerVisionInnerError
-
public class ComputerVisionInnerError extends Object
Details about the API request error.
-
-
Constructor Summary
Constructors Constructor Description ComputerVisionInnerError()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ComputerVisionInnerErrorCodeValue
code()
Get the code value.String
message()
Get the message value.ComputerVisionInnerError
withCode(ComputerVisionInnerErrorCodeValue code)
Set the code value.ComputerVisionInnerError
withMessage(String message)
Set the message value.
-
-
-
Method Detail
-
code
public ComputerVisionInnerErrorCodeValue code()
Get the code value.- Returns:
- the code value
-
withCode
public ComputerVisionInnerError withCode(ComputerVisionInnerErrorCodeValue code)
Set the code value.- Parameters:
code
- the code value to set- Returns:
- the ComputerVisionInnerError object itself.
-
message
public String message()
Get the message value.- Returns:
- the message value
-
withMessage
public ComputerVisionInnerError withMessage(String message)
Set the message value.- Parameters:
message
- the message value to set- Returns:
- the ComputerVisionInnerError object itself.
-
-