Class WorkRequestError
An error encountered while executing a work request.
Inherited Members
Namespace: Oci.SchService.Models
Assembly: OCI.DotNetSDK.Sch.dll
Syntax
public class WorkRequestErrorProperties
Code
Declaration
[Required(ErrorMessage = "Code is required.")]
[JsonProperty(PropertyName = "code")]
public string Code { get; set; }Property Value
| Type | Description | 
|---|---|
| string | A machine-usable code for the error that occured. See API Errors. | 
Remarks
Required
Message
Declaration
[Required(ErrorMessage = "Message is required.")]
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }Property Value
| Type | Description | 
|---|---|
| string | A human readable description of the issue encountered. | 
Remarks
Required
Timestamp
Declaration
[Required(ErrorMessage = "Timestamp is required.")]
[JsonProperty(PropertyName = "timestamp")]
public DateTime? Timestamp { get; set; }Property Value
| Type | Description | 
|---|---|
| DateTime? | The date and time when the error occurred. Format is defined by RFC3339. Example: 2020-01-25T21:10:29.600Z | 
Remarks
Required