Show / Hide Table of Contents

Class Message

The details of a message.

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

Properties

Code

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

The message code.

Remarks

Required

MessageProp

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

The message text.

Remarks

Required

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Message.TypeEnum? Type { get; set; }
Property Value
Type Description
Message.TypeEnum?

The type of message (error, warning, or info).

Remarks

Required

In this article
Back to top