Class: Google::Apis::BooksV1::Bookshelf

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Bookshelf

Returns a new instance of Bookshelf.



556
557
558
# File 'generated/google/apis/books_v1/classes.rb', line 556

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

Instance Attribute Details

#accessString

Whether this bookshelf is PUBLIC or PRIVATE. Corresponds to the JSON property access

Returns:

  • (String)


506
507
508
# File 'generated/google/apis/books_v1/classes.rb', line 506

def access
  @access
end

#createdString

Created time for this bookshelf (formatted UTC timestamp with millisecond resolution). Corresponds to the JSON property created

Returns:

  • (String)


512
513
514
# File 'generated/google/apis/books_v1/classes.rb', line 512

def created
  @created
end

#descriptionString

Description of this bookshelf. Corresponds to the JSON property description

Returns:

  • (String)


517
518
519
# File 'generated/google/apis/books_v1/classes.rb', line 517

def description
  @description
end

#idFixnum

Id of this bookshelf, only unique by user. Corresponds to the JSON property id

Returns:

  • (Fixnum)


522
523
524
# File 'generated/google/apis/books_v1/classes.rb', line 522

def id
  @id
end

#kindString

Resource type for bookshelf metadata. Corresponds to the JSON property kind

Returns:

  • (String)


527
528
529
# File 'generated/google/apis/books_v1/classes.rb', line 527

def kind
  @kind
end

URL to this resource. Corresponds to the JSON property selfLink

Returns:

  • (String)


532
533
534
# File 'generated/google/apis/books_v1/classes.rb', line 532

def self_link
  @self_link
end

#titleString

Title of this bookshelf. Corresponds to the JSON property title

Returns:

  • (String)


537
538
539
# File 'generated/google/apis/books_v1/classes.rb', line 537

def title
  @title
end

#updatedString

Last modified time of this bookshelf (formatted UTC timestamp with millisecond resolution). Corresponds to the JSON property updated

Returns:

  • (String)


543
544
545
# File 'generated/google/apis/books_v1/classes.rb', line 543

def updated
  @updated
end

#volume_countFixnum

Number of volumes in this bookshelf. Corresponds to the JSON property volumeCount

Returns:

  • (Fixnum)


548
549
550
# File 'generated/google/apis/books_v1/classes.rb', line 548

def volume_count
  @volume_count
end

#volumes_last_updatedString

Last time a volume was added or removed from this bookshelf (formatted UTC timestamp with millisecond resolution). Corresponds to the JSON property volumesLastUpdated

Returns:

  • (String)


554
555
556
# File 'generated/google/apis/books_v1/classes.rb', line 554

def volumes_last_updated
  @volumes_last_updated
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



561
562
563
564
565
566
567
568
569
570
571
572
# File 'generated/google/apis/books_v1/classes.rb', line 561

def update!(**args)
  @access = args[:access] if args.key?(:access)
  @created = args[:created] if args.key?(:created)
  @description = args[:description] if args.key?(:description)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @self_link = args[:self_link] if args.key?(:self_link)
  @title = args[:title] if args.key?(:title)
  @updated = args[:updated] if args.key?(:updated)
  @volume_count = args[:volume_count] if args.key?(:volume_count)
  @volumes_last_updated = args[:volumes_last_updated] if args.key?(:volumes_last_updated)
end