class Google::Apis::BooksV1::Discoveryclusters::Cluster

Attributes

banner_with_content_container[RW]

Corresponds to the JSON property `banner_with_content_container` @return [Google::Apis::BooksV1::Discoveryclusters::Cluster::BannerWithContentContainer]

sub_title[RW]

Corresponds to the JSON property `subTitle` @return [String]

title[RW]

Corresponds to the JSON property `title` @return [String]

total_volumes[RW]

Corresponds to the JSON property `totalVolumes` @return [Fixnum]

uid[RW]

Corresponds to the JSON property `uid` @return [String]

volumes[RW]

Corresponds to the JSON property `volumes` @return [Array<Google::Apis::BooksV1::Volume>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/books_v1/classes.rb, line 1373
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 1378
def update!(**args)
  @banner_with_content_container = args[:banner_with_content_container] if args.key?(:banner_with_content_container)
  @sub_title = args[:sub_title] if args.key?(:sub_title)
  @title = args[:title] if args.key?(:title)
  @total_volumes = args[:total_volumes] if args.key?(:total_volumes)
  @uid = args[:uid] if args.key?(:uid)
  @volumes = args[:volumes] if args.key?(:volumes)
end