Class: Google::Apis::BooksV1::UserSettings

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/books_v1/classes.rb,
generated/google/apis/books_v1/representations.rb,
generated/google/apis/books_v1/representations.rb

Defined Under Namespace

Classes: NotesExport, Notification

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ UserSettings

Returns a new instance of UserSettings.



2634
2635
2636
# File 'generated/google/apis/books_v1/classes.rb', line 2634

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#kindString

Resource type. Corresponds to the JSON property kind

Returns:

  • (String)


2622
2623
2624
# File 'generated/google/apis/books_v1/classes.rb', line 2622

def kind
  @kind
end

#notes_exportGoogle::Apis::BooksV1::UserSettings::NotesExport

User settings in sub-objects, each for different purposes. Corresponds to the JSON property notesExport



2627
2628
2629
# File 'generated/google/apis/books_v1/classes.rb', line 2627

def notes_export
  @notes_export
end

#notificationGoogle::Apis::BooksV1::UserSettings::Notification

Corresponds to the JSON property notification



2632
2633
2634
# File 'generated/google/apis/books_v1/classes.rb', line 2632

def notification
  @notification
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2639
2640
2641
2642
2643
# File 'generated/google/apis/books_v1/classes.rb', line 2639

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