Show / Hide Table of Contents

Class ContextualData

Information collected from user context during ticket creation.

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

Properties

ClientId

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

The unique identifier for the client.

Remarks

Required

Payload

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

The payload for the contextual data.

Remarks

Required

SchemaName

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

The name assigned to the schema.

Remarks

Required

SchemaVersion

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

The version of the schema.

Remarks

Required

In this article
Back to top