Show / Hide Table of Contents

Class WorkRequestLog

A Data Flow work request log object.

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

Properties

Id

Declaration
[JsonProperty(PropertyName = "id")]
public long? Id { get; set; }
Property Value
Type Description
long?

The id of a work request log.

Message

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

A human readable log message.

Remarks

Required

Timestamp

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

The time the log message was written. An RFC3339 formatted datetime string.

Remarks

Required

WorkRequestid

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

The OCID of a work request.

In this article
Back to top