BillOfMaterialsRecord

@Serializable
data class BillOfMaterialsRecord(val version: Version, val date: Long) : VersionedDependencyRecord

Represents a record for a Bill of Materials (BOM), containing its version and date.

See also

Constructors

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

Properties

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

The timestamp representing the date associated with the BOM.

Link copied to clipboard

Provides a formatted string representation of the date.

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

The version of the BOM.