ModuleDependencyRecord

@Serializable
data class ModuleDependencyRecord(val module: String, val version: Version, val date: Long) : VersionedDependencyRecord

Represents a record for a specific module dependency, including its Gradle dependency string, version, and date.

See also

Constructors

Link copied to clipboard
constructor(module: String, version: Version, date: Long)

Properties

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

The timestamp representing the date associated with the module dependency.

Link copied to clipboard

Provides a formatted string representation of the date.

Link copied to clipboard

The Gradle dependency string for the module.

Link copied to clipboard
@SerialName(value = "moduleVersion")
open override val version: Version

The version of the module dependency.