Ametista Application

@Serializable
data class AmetistaApplication(    val id: String,     val name: String,     val creationDate: Long,     val applicationIcon: String,     val description: String,     val platforms: Set<Platform>,     val issues: List<IssueAnalyticImpl> = emptyList(),     val performanceAnalytics: List<PerformanceAnalytic> = emptyList()) : AmetistaItem

The AmetistaApplication class is used represent an application of the Ametista system

Author

N7ghtm4r3 - Tecknobit

See also

Constructors

Link copied to clipboard
constructor(id: String, name: String, creationDate: Long, applicationIcon: String, description: String, platforms: Set<Platform>, issues: List<IssueAnalyticImpl> = emptyList(), performanceAnalytics: List<PerformanceAnalytic> = emptyList())

Properties

Link copied to clipboard
@SerialName(value = "icon" )
val applicationIcon: String

The icon of the application

Link copied to clipboard
@SerialName(value = "creation_date" )
open override val creationDate: Long

The date when the application has been created

Link copied to clipboard

The description of the application

Link copied to clipboard
open override val id: String

The identifier of the application

Link copied to clipboard

The issues of the application

Link copied to clipboard
open override val name: String

The name of the application

Link copied to clipboard
@SerialName(value = "performance_analytics" )
val performanceAnalytics: List<PerformanceAnalytic>

The analytics performance of the application

Link copied to clipboard
val platforms: Set<Platform>

The platforms of the application