ResultProvenance

Contains information about how and when a result was detected.

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
@SerializedName(value = "conversionSources")
@Expose
open var conversionSources: Set<PhysicalLocation>
An array of physicalLocation objects which specify the portions of an analysis tool's output that a converter transformed into the result.
Link copied to clipboard
@SerializedName(value = "firstDetectionRunGuid")
@Expose
open var firstDetectionRunGuid: String
A GUID-valued string equal to the automationDetails.guid property of the run in which the result was first detected.
Link copied to clipboard
@SerializedName(value = "firstDetectionTimeUtc")
@Expose
open var firstDetectionTimeUtc: Instant
The Coordinated Universal Time (UTC) date and time at which the result was first detected.
Link copied to clipboard
@SerializedName(value = "invocationIndex")
@Expose
open var invocationIndex: Integer
The index within the run.invocations array of the invocation object which describes the tool invocation that detected the result.
Link copied to clipboard
@SerializedName(value = "lastDetectionRunGuid")
@Expose
open var lastDetectionRunGuid: String
A GUID-valued string equal to the automationDetails.guid property of the run in which the result was most recently detected.
Link copied to clipboard
@SerializedName(value = "lastDetectionTimeUtc")
@Expose
open var lastDetectionTimeUtc: Instant
The Coordinated Universal Time (UTC) date and time at which the result was most recently detected.
Link copied to clipboard
@SerializedName(value = "properties")
@Expose
open var properties: PropertyBag
Key/value pairs that provide additional information about the object.

Functions

Link copied to clipboard
open fun equals(other: Any): Boolean
Link copied to clipboard
abstract fun getProperties(): PropertyBag
Link copied to clipboard
open fun hashCode(): Int
Link copied to clipboard
abstract fun setProperties(<set-?>: PropertyBag)
Link copied to clipboard
open fun toString(): String
Link copied to clipboard
open fun updateProperties(mutator: (in PropertyBag) -> Unit)
Link copied to clipboard
Link copied to clipboard
open fun withFirstDetectionRunGuid(firstDetectionRunGuid: String): ResultProvenance
Link copied to clipboard
open fun withFirstDetectionTimeUtc(firstDetectionTimeUtc: Instant): ResultProvenance
Link copied to clipboard
open fun withInvocationIndex(invocationIndex: Integer): ResultProvenance
Link copied to clipboard
open fun withLastDetectionRunGuid(lastDetectionRunGuid: String): ResultProvenance
Link copied to clipboard
open fun withLastDetectionTimeUtc(lastDetectionTimeUtc: Instant): ResultProvenance
Link copied to clipboard