Class ErrorResponseDetails
Inherited Members
Namespace: Glitch9.AIDevKit.Microsoft.Azure
Assembly: Glitch9.AIDevKit.Provider.Microsoft.Azure.dll
Syntax
public class ErrorResponseDetails
Properties
| Edit this page View SourceCode
Required. Error code.
Declaration
[JsonProperty("code")]
public string Code { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Details
Required. List of detailed errors.
Declaration
[JsonProperty("details")]
public ErrorResponseDetails[] Details { get; set; }
Property Value
| Type | Description |
|---|---|
| ErrorResponseDetails[] |
InnerError
Required. Detailed error.
Declaration
[JsonProperty("innererror")]
public ErrorInfo InnerError { get; set; }
Property Value
| Type | Description |
|---|---|
| ErrorInfo |
Message
Required. Error message.
Declaration
[JsonProperty("message")]
public string Message { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Target
Required. Target of the error.
Declaration
[JsonProperty("target")]
public string Target { get; set; }
Property Value
| Type | Description |
|---|---|
| string |