Show / Hide Table of Contents

Class WorkRequestError

Inheritance
object
WorkRequestError
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ObjectstorageService.Models
Assembly: OCI.DotNetSDK.Objectstorage.dll
Syntax
public class WorkRequestError

Properties

Code

Declaration
[JsonProperty(PropertyName = "code")]
public string Code { get; set; }
Property Value
Type Description
string

A machine-usable code for the error that occurred. For the list of error codes, see API Errors.

Message

Declaration
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }
Property Value
Type Description
string

A human-readable description of the issue that produced the error.

Timestamp

Declaration
[JsonProperty(PropertyName = "timestamp")]
public DateTime? Timestamp { get; set; }
Property Value
Type Description
DateTime?

The time the error occurred.

In this article
Back to top