Class CreateTicketDetails
Details relevant to the support ticket.
Inherited Members
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