Show / Hide Table of Contents

Class ServiceCategory

Information about the support ticket classifier.

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

Properties

Description

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

The text describing the classifier.

IssueTypeList

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

The list of issues.

Key

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

The unique ID that identifies a classifier.

Label

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

The label for the classifier.

LimitId

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

The unique ID for the limit.

Name

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

The name of the classifier.

Scope

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

The scope of the incident.

SupportedSubscriptions

Declaration
[JsonProperty(PropertyName = "supportedSubscriptions")]
public List<string> SupportedSubscriptions { get; set; }
Property Value
Type Description
List<string>

List of supported subscriptions

Unit

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

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

In this article
Back to top