cyclonedx.model.bom_ref

Module Contents

Classes

BomRef

An identifier that can be used to reference objects elsewhere in the BOM.

class cyclonedx.model.bom_ref.BomRef(value: str | None = None)[source]

An identifier that can be used to reference objects elsewhere in the BOM.

This copies a similar pattern used in the CycloneDX Python Library.

property value: str[source]
__eq__(other: object) bool[source]

Return self==value.

__lt__(other: Any) bool[source]

Return self<value.

__hash__() int[source]

Return hash(self).

__repr__() str[source]

Return repr(self).

__str__() str[source]

Return str(self).