Class: Google::Apis::BooksV1::UserSettings
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::BooksV1::UserSettings
 
- 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
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Resource type. 
- 
  
    
      #notes_export  ⇒ Google::Apis::BooksV1::UserSettings::NotesExport 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    User settings in sub-objects, each for different purposes. 
- 
  
    
      #notification  ⇒ Google::Apis::BooksV1::UserSettings::Notification 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property notification.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UserSettings 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of UserSettings. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UserSettings
Returns a new instance of UserSettings
| 2601 2602 2603 | # File 'generated/google/apis/books_v1/classes.rb', line 2601 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
Resource type.
Corresponds to the JSON property kind
| 2589 2590 2591 | # File 'generated/google/apis/books_v1/classes.rb', line 2589 def kind @kind end | 
#notes_export ⇒ Google::Apis::BooksV1::UserSettings::NotesExport
User settings in sub-objects, each for different purposes.
Corresponds to the JSON property notesExport
| 2594 2595 2596 | # File 'generated/google/apis/books_v1/classes.rb', line 2594 def notes_export @notes_export end | 
#notification ⇒ Google::Apis::BooksV1::UserSettings::Notification
Corresponds to the JSON property notification
| 2599 2600 2601 | # File 'generated/google/apis/books_v1/classes.rb', line 2599 def notification @notification end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2606 2607 2608 2609 2610 | # File 'generated/google/apis/books_v1/classes.rb', line 2606 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 |