class Google::Apis::ContaineranalysisV1::ListNoteOccurrencesResponse
Response for listing occurrences for a note.
Attributes
next_page_token[RW]
Token to provide to skip to a particular spot in the list. Corresponds to the JSON property ‘nextPageToken` @return [String]
occurrences[RW]
The occurrences attached to the specified note. Corresponds to the JSON property ‘occurrences` @return [Array<Google::Apis::ContaineranalysisV1::Occurrence>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/containeranalysis_v1/classes.rb, line 3253 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_v1/classes.rb, line 3258 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @occurrences = args[:occurrences] if args.key?(:occurrences) end