Show / Hide Table of Contents

Class Classifier

Details about the incident classifier object.

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

Properties

Description

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

The description of the classifier.

Id

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

Unique identifier of the classifier.

IssueTypeList

Declaration
[JsonProperty(PropertyName = "issueTypeList")]
public List<IssueType> IssueTypeList { get; set; }
Property Value
Type Description
List<IssueType>

The list of issues.

Label

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

The label associated with the classifier.

Name

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

The display name of the classifier.

Scope

Declaration
[JsonProperty(PropertyName = "scope")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Classifier.ScopeEnum? Scope { get; set; }
Property Value
Type Description
Classifier.ScopeEnum?

The scope of the service category or resource.

Unit

Declaration
[JsonProperty(PropertyName = "unit")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Classifier.UnitEnum? Unit { get; set; }
Property Value
Type Description
Classifier.UnitEnum?

The unit to use to measure the service category or resource.

In this article
Back to top