class Google::Apis::SafebrowsingV4::GoogleSecuritySafebrowsingV4ThreatEntryMetadataMetadataEntry
A single metadata entry.
Attributes
key[RW]
The metadata entry key. For JSON requests, the key is base64-encoded. Corresponds to the JSON property `key` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]
value[RW]
The metadata entry value. For JSON requests, the value is base64-encoded. 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/safebrowsing_v4/classes.rb, line 614 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/safebrowsing_v4/classes.rb, line 619 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end