Show / Hide Table of Contents

Class CreateIncident

Details gathered during the creation of the support request.

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

Properties

CompartmentId

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

The OCID of the tenancy.

Remarks

Required

Contacts

Declaration
[JsonProperty(PropertyName = "contacts")]
public List<Contact> Contacts { get; set; }
Property Value
Type Description
List<Contact>

The list of contacts.

Csi

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

Deprecated. The Customer Support Identifier (CSI) number associated with the support account. The CSI is optional for all support request types.

ProblemType

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

The kind of support request (type of support request). For information about ACCOUNT support requests, see Creating a Billing Support Request. For information about LIMIT support requests, see Creating a Service Limit Increase Request. For information about TECH support requests, see Creating a Technical Support Request.

Remarks

Required

Referrer

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

The incident referrer. This value is often the URL that the customer used when creating the support request.

Ticket

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

Required

UserGroupId

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

Technical support type (TECH) only: Identifier of the user group to assign the new support request to. To find identifiers of user groups that you have access to, run the {@link #validateUser(ValidateUserRequest) validateUser} operation. Note: The Customer User Administrator (CUA) can manage user groups by name using My Oracle Cloud Support portal.

In this article
Back to top