Current section

Files

Jump to
sbom lib sbom cyclonedx v15 event.pb.ex
Raw

lib/sbom/cyclonedx/v15/event.pb.ex

defmodule SBoM.CycloneDX.V15.Event do
@moduledoc """
Represents something that happened that may trigger a response.
"""
use Protobuf, protoc_gen_elixir_version: "0.15.0", syntax: :proto3
alias SBoM.CycloneDX.V15.ResourceReferenceChoice
field(:uid, 1, proto3_optional: true, type: :string)
field(:description, 2, proto3_optional: true, type: :string)
field(:timeReceived, 3, proto3_optional: true, type: Google.Protobuf.Timestamp)
field(:data, 4, proto3_optional: true, type: SBoM.CycloneDX.V15.AttachedText)
field(:source, 5, proto3_optional: true, type: ResourceReferenceChoice)
field(:target, 6, proto3_optional: true, type: ResourceReferenceChoice)
field(:properties, 7, repeated: true, type: SBoM.CycloneDX.V15.Property)
end