Show / Hide Table of Contents

Class MessageSummary

Deployment message Summary.

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

Properties

DeploymentMessage

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

The deployment Message in plain text with optional HTML anchor tags.

Remarks

Required

DeploymentMessageStatus

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

The deployment Message Status.

Remarks

Required

Id

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

The deployment Message Id.

Remarks

Required

In this article
Back to top