class Google::Apis::ContaineranalysisV1alpha1::FileNote
FileNote
represents an SPDX File Information section: spdx.github.io/ spdx-spec/4-file-information/
Attributes
checksum[RW]
Provide a unique identifier to match analysis information on each specific file in a package Corresponds to the JSON property `checksum` @return [Array<String>]
file_type[RW]
This field provides information about the type of file identified Corresponds to the JSON property `fileType` @return [String]
title[RW]
Identify the full path and filename that corresponds to the file information in this section Corresponds to the JSON property `title` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/containeranalysis_v1alpha1/classes.rb, line 1469 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/containeranalysis_v1alpha1/classes.rb, line 1474 def update!(**args) @checksum = args[:checksum] if args.key?(:checksum) @file_type = args[:file_type] if args.key?(:file_type) @title = args[:title] if args.key?(:title) end