Show / Hide Table of Contents

Class UpdateActivityItemDetails

Details for updating the support request activity.

Inheritance
object
UpdateItemDetails
UpdateActivityItemDetails
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 UpdateActivityItemDetails : UpdateItemDetails

Properties

ActivityType

Declaration
[JsonProperty(PropertyName = "activityType")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateActivityItemDetails.ActivityTypeEnum? ActivityType { get; set; }
Property Value
Type Description
UpdateActivityItemDetails.ActivityTypeEnum?

The type of activity occurring. NOTES is the activity associated to attachments. PROBLEM_DESCRIPTION is the activity associated to customer problem description. UPDATE is the activity associated to adding comments. CLOSE is the activity associated to closing the support request. REOPEN is the activity associated to reopening the support request. ADD_CONTACT is the activity associated to adding additional contact to the support request.

Comments

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

Comments updated at the time that the activity occurs.

In this article
Back to top