class Google::Apis::BooksV1::UserSettings

Attributes

kind[RW]

Resource type. Corresponds to the JSON property `kind` @return [String]

notes_export[RW]

User settings in sub-objects, each for different purposes. Corresponds to the JSON property `notesExport` @return [Google::Apis::BooksV1::UserSettings::NotesExport]

notification[RW]

Corresponds to the JSON property `notification` @return [Google::Apis::BooksV1::UserSettings::Notification]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/books_v1/classes.rb, line 2820
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/books_v1/classes.rb, line 2825
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @notes_export = args[:notes_export] if args.key?(:notes_export)
  @notification = args[:notification] if args.key?(:notification)
end