Show / Hide Table of Contents

Class UpdateIncident

Details about the support ticket being updated.

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

Properties

ProblemType

Declaration
[JsonProperty(PropertyName = "problemType")]
[JsonConverter(typeof(StringEnumConverter))]
public ProblemType? ProblemType { get; set; }
Property Value
Type Description
ProblemType?

The kind of support ticket (type of support request). For information about ACCOUNT support tickets, see Creating a Billing Support Request. For information about LIMIT support tickets, see Creating a Service Limit Increase Request. For information about TECH support tickets, see Creating a Technical Support Request.

Ticket

Declaration
[Required(ErrorMessage = "Ticket is required.")]
[JsonProperty(PropertyName = "ticket")]
public UpdateTicketDetails Ticket { get; set; }
Property Value
Type Description
UpdateTicketDetails
Remarks

Required

In this article
Back to top