class Google::Apis::KeepV1::ListNotesResponse
The response when listing a page of notes.
Attributes
next_page_token[RW]
Next page's `page_token` field. Corresponds to the JSON property `nextPageToken` @return [String]
notes[RW]
A page of notes. Corresponds to the JSON property `notes` @return [Array<Google::Apis::KeepV1::Note>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/keep_v1/classes.rb, line 254 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/keep_v1/classes.rb, line 259 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @notes = args[:notes] if args.key?(:notes) end