Show / Hide Table of Contents

Class CreateItemDetails

Details gathered during ticket creation.

Inheritance
object
CreateItemDetails
CreateAccountItemDetails
CreateLimitItemDetails
CreateTechSupportItemDetails
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
[JsonConverter(typeof(CreateItemDetailsModelConverter))]
public class CreateItemDetails

Properties

Category

Declaration
[JsonProperty(PropertyName = "category")]
public CreateCategoryDetails Category { get; set; }
Property Value
Type Description
CreateCategoryDetails

IssueType

Declaration
[JsonProperty(PropertyName = "issueType")]
public CreateIssueTypeDetails IssueType { get; set; }
Property Value
Type Description
CreateIssueTypeDetails

Name

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

The display name of the ticket. Avoid entering confidential information.

SubCategory

Declaration
[JsonProperty(PropertyName = "subCategory")]
public CreateSubCategoryDetails SubCategory { get; set; }
Property Value
Type Description
CreateSubCategoryDetails
In this article
Back to top