Show / Hide Table of Contents

Class IncidentType

Details about the incident type associated with the support ticket.

Inheritance
object
IncidentType
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 IncidentType

Properties

ClassifierList

Declaration
[JsonProperty(PropertyName = "classifierList")]
public List<Classifier> ClassifierList { get; set; }
Property Value
Type Description
List<Classifier>

The list of classifiers.

Description

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

The description of the incident type.

Id

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

Unique identifier for the incident type.

Label

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

The label associated with the incident type.

Name

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

The name of the incident type.

In this article
Back to top