Screen Resource
@JsonClass(generateAdapter = true )
Data class representing a ScreenResource. Conforms to Resource, HasName, HasLinks and HasResults.
Parameters
created At
The timestamp when the screen was created.
updated At
The timestamp when the screen was last updated.
id
The unique identifier of the screen.
name
The name of the screen.
results
The results count for the report.
path
The path to get to the screen (optional).
class Name
The class name associated with the screen (optional).
links
The links associated with the screen.
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 = "path" ) path: String?, @Json(name = "classname" ) className: String?, @Json(name = "links" ) links: Links)