Show / Hide Table of Contents

Class CreateTicketDetails

Details relevant to the support ticket.

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

Properties

ContextualData

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

Description

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

The description of the support ticket. Avoid entering confidential information.

Remarks

Required

ResourceList

Declaration
[JsonProperty(PropertyName = "resourceList")]
public List<CreateResourceDetails> ResourceList { get; set; }
Property Value
Type Description
List<CreateResourceDetails>

The list of resources.

Severity

Declaration
[Required(ErrorMessage = "Severity is required.")]
[JsonProperty(PropertyName = "severity")]
[JsonConverter(typeof(StringEnumConverter))]
public CreateTicketDetails.SeverityEnum? Severity { get; set; }
Property Value
Type Description
CreateTicketDetails.SeverityEnum?

The severity of the support ticket.

Remarks

Required

Title

Declaration
[Required(ErrorMessage = "Title is required.")]
[JsonProperty(PropertyName = "title")]
public string Title { get; set; }
Property Value
Type Description
string

The title of the support ticket. Avoid entering confidential information.

Remarks

Required

In this article
Back to top