Show / Hide Table of Contents

Class ApplicationWorkItemDetails

The work item details with JFR related information.

Inheritance
object
WorkItemDetails
ApplicationWorkItemDetails
Inherited Members
WorkItemDetails.WorkItemType
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.JmsService.Models
Assembly: OCI.DotNetSDK.Jms.dll
Syntax
public class ApplicationWorkItemDetails : WorkItemDetails

Properties

ApplicationInstallationKey

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

The unique key of the application installation of the JFR.

ApplicationInstallationPath

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

The full path on which application installation was detected.

ApplicationKey

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

The unique key of the application of the JFR.

Remarks

Required

ApplicationName

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

The application name.

Remarks

Required

In this article
Back to top