Suppression

A suppression that is relevant to a result.

Constructors

Link copied to clipboard
constructor()
No args constructor for use in serialization
constructor(kind: Suppression.Kind)

Types

Link copied to clipboard
enum Kind
A string that indicates where the suppression is persisted.
Link copied to clipboard
enum Status
A string that indicates the review status of the suppression.

Properties

Link copied to clipboard
@SerializedName(value = "guid")
@Expose
open var guid: String
A stable, unique identifer for the suprression in the form of a GUID.
Link copied to clipboard
@SerializedName(value = "justification")
@Expose
open var justification: String
A string representing the justification for the suppression.
Link copied to clipboard
@SerializedName(value = "kind")
@Expose
open var kind: Suppression.Kind
A string that indicates where the suppression is persisted.
Link copied to clipboard
@SerializedName(value = "location")
@Expose
open var location: Location
A location within a programming artifact.
Link copied to clipboard
@SerializedName(value = "properties")
@Expose
open var properties: PropertyBag
Key/value pairs that provide additional information about the object.
Link copied to clipboard
@SerializedName(value = "status")
@Expose
open var status: Suppression.Status
A string that indicates the review status of the suppression.

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
open fun withGuid(guid: String): Suppression
Link copied to clipboard
open fun withJustification(justification: String): Suppression
Link copied to clipboard
Link copied to clipboard
open fun withLocation(location: Location): Suppression
Link copied to clipboard
open fun withProperties(properties: PropertyBag): Suppression
Link copied to clipboard