App Resource
@JsonClass(generateAdapter = true )
Data class representing an AppResource. Conforms to Resource, HasName, HasIcon and HasLinks.
Parameters
created At
The timestamp when the app was created.
updated At
The timestamp when the app was last updated.
id
The unique identifier of the app.
name
The name of the app.
icon
The icon of the app.
identifier
The unique identifier associated with the app (bundle identifier or package name).
platform
The Platform on which the app runs (e.g., Android, iOS).
links
The links associated with the app.
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 = "icon" ) icon: String, @Json(name = "identifier" ) identifier: String, @Json(name = "platform" ) platform: Platform, @Json(name = "links" ) links: Links)