Result Resource
@JsonClass(generateAdapter = true )
Data class representing a ResultResource. Conforms to Resource, HasDescription and HasLinks.
Parameters
created At
The timestamp when the result was created.
updated At
The timestamp when the result was last updated.
id
The unique identifier of the result.
description
A description with more information about the result (optional).
rule
The RuleResource associated with the result.
type
The SeverityType of the result.
source
The Source of the result.
screenshots
An array containing links to screenshots of the result.
links
The links associated with the result.
Constructors
Link copied to clipboard
constructor(@Json(name = "created_at" ) createdAt: String, @Json(name = "updated_at" ) updatedAt: String, @Json(name = "id" ) id: String, @Json(name = "description" ) description: String?, @Json(name = "rule" ) rule: RuleResource, @Json(name = "type" ) type: SeverityType, @Json(name = "source" ) source: Source, @Json(name = "screenshots" ) screenshots: List<String>, @Json(name = "links" ) links: Links)