class Google::Apis::ContaineranalysisV1alpha1::HashProp
Container message for hash values.
Attributes
type[RW]
The type of hash that was performed. Corresponds to the JSON property `type` @return [String]
value[RW]
The hash value. Corresponds to the JSON property `value` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/containeranalysis_v1alpha1/classes.rb, line 1910 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 1915 def update!(**args) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end