Class ResultError
Error Information.
Inherited Members
Namespace: Oci.DatabasemigrationService.Models
Assembly: OCI.DotNetSDK.Databasemigration.dll
Syntax
public class ResultError
Properties
Action
Declaration
[JsonProperty(PropertyName = "action")]
public string Action { get; set; }
Property Value
Type | Description |
---|---|
string | The text describing the action required to fix the issue |
Code
Declaration
[Required(ErrorMessage = "Code is required.")]
[JsonProperty(PropertyName = "code")]
public string Code { get; set; }
Property Value
Type | Description |
---|---|
string | A short error code that defines the error, meant for programmatic parsing. |
Remarks
Required
Issue
Declaration
[JsonProperty(PropertyName = "issue")]
public string Issue { get; set; }
Property Value
Type | Description |
---|---|
string | The text describing the root cause of the reported issue |
Message
Declaration
[Required(ErrorMessage = "Message is required.")]
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }
Property Value
Type | Description |
---|---|
string | A human-readable error string. |
Remarks
Required