Report Resource
@JsonClass(generateAdapter = true )
Data class representing a ReportResource. Conforms to Resource, HasName, HasLinks and HasResults.
Parameters
created At
The timestamp when the report was created.
updated At
The timestamp when the report was last updated.
id
The unique identifier of the report.
name
The name of the report.
results
The results count for the report.
app
The AppResource associated with the report.
state
The ReportState of the report.
links
The links associated with the report.
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 = "name" ) name: String, @Json(name = "results" ) results: Map<SeverityType, Int?>, @Json(name = "app" ) app: AppResource, @Json(name = "state" ) state: ReportState, @Json(name = "links" ) links: Links)