Class: Google::Apis::BooksV1::Bookshelf
- Inherits:
-
Object
- Object
- Google::Apis::BooksV1::Bookshelf
- 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
-
#access ⇒ String
Whether this bookshelf is PUBLIC or PRIVATE.
-
#created ⇒ String
Created time for this bookshelf (formatted UTC timestamp with millisecond resolution).
-
#description ⇒ String
Description of this bookshelf.
-
#id ⇒ Fixnum
Id of this bookshelf, only unique by user.
-
#kind ⇒ String
Resource type for bookshelf metadata.
-
#self_link ⇒ String
URL to this resource.
-
#title ⇒ String
Title of this bookshelf.
-
#updated ⇒ String
Last modified time of this bookshelf (formatted UTC timestamp with millisecond resolution).
-
#volume_count ⇒ Fixnum
Number of volumes in this bookshelf.
-
#volumes_last_updated ⇒ String
Last time a volume was added or removed from this bookshelf (formatted UTC timestamp with millisecond resolution).
Instance Method Summary collapse
-
#initialize(**args) ⇒ Bookshelf
constructor
A new instance of Bookshelf.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#access ⇒ String
Whether this bookshelf is PUBLIC or PRIVATE.
Corresponds to the JSON property access
506 507 508 |
# File 'generated/google/apis/books_v1/classes.rb', line 506 def access @access end |
#created ⇒ String
Created time for this bookshelf (formatted UTC timestamp with millisecond
resolution).
Corresponds to the JSON property created
512 513 514 |
# File 'generated/google/apis/books_v1/classes.rb', line 512 def created @created end |
#description ⇒ String
Description of this bookshelf.
Corresponds to the JSON property description
517 518 519 |
# File 'generated/google/apis/books_v1/classes.rb', line 517 def description @description end |
#id ⇒ Fixnum
Id of this bookshelf, only unique by user.
Corresponds to the JSON property id
522 523 524 |
# File 'generated/google/apis/books_v1/classes.rb', line 522 def id @id end |
#kind ⇒ String
Resource type for bookshelf metadata.
Corresponds to the JSON property kind
527 528 529 |
# File 'generated/google/apis/books_v1/classes.rb', line 527 def kind @kind end |
#self_link ⇒ String
URL to this resource.
Corresponds to the JSON property selfLink
532 533 534 |
# File 'generated/google/apis/books_v1/classes.rb', line 532 def self_link @self_link end |
#title ⇒ String
Title of this bookshelf.
Corresponds to the JSON property title
537 538 539 |
# File 'generated/google/apis/books_v1/classes.rb', line 537 def title @title end |
#updated ⇒ String
Last modified time of this bookshelf (formatted UTC timestamp with millisecond
resolution).
Corresponds to the JSON property updated
543 544 545 |
# File 'generated/google/apis/books_v1/classes.rb', line 543 def updated @updated end |
#volume_count ⇒ Fixnum
Number of volumes in this bookshelf.
Corresponds to the JSON property volumeCount
548 549 550 |
# File 'generated/google/apis/books_v1/classes.rb', line 548 def volume_count @volume_count end |
#volumes_last_updated ⇒ String
Last time a volume was added or removed from this bookshelf (formatted UTC
timestamp with millisecond resolution).
Corresponds to the JSON property volumesLastUpdated
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 |