Show / Hide Table of Contents

Class UpdateProblemStatusDetails

The additional details to be updated for the problem.

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

Properties

Comment

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

User comments

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(StringEnumConverter))]
public ProblemLifecycleDetail? Status { get; set; }
Property Value
Type Description
ProblemLifecycleDetail?

Action taken by user

Remarks

Required

In this article
Back to top