Class: Google::Apis::BooksV1::Discoveryclusters::Cluster

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: BannerWithContentContainer

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Cluster

Returns a new instance of Cluster.



1373
1374
1375
# File 'generated/google/apis/books_v1/classes.rb', line 1373

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

Instance Attribute Details

Corresponds to the JSON property banner_with_content_container



1346
1347
1348
# File 'generated/google/apis/books_v1/classes.rb', line 1346

def banner_with_content_container
  @banner_with_content_container
end

#sub_titleString

Corresponds to the JSON property subTitle

Returns:

  • (String)


1351
1352
1353
# File 'generated/google/apis/books_v1/classes.rb', line 1351

def sub_title
  @sub_title
end

#titleString

Corresponds to the JSON property title

Returns:

  • (String)


1356
1357
1358
# File 'generated/google/apis/books_v1/classes.rb', line 1356

def title
  @title
end

#total_volumesFixnum

Corresponds to the JSON property totalVolumes

Returns:

  • (Fixnum)


1361
1362
1363
# File 'generated/google/apis/books_v1/classes.rb', line 1361

def total_volumes
  @total_volumes
end

#uidString

Corresponds to the JSON property uid

Returns:

  • (String)


1366
1367
1368
# File 'generated/google/apis/books_v1/classes.rb', line 1366

def uid
  @uid
end

#volumesArray<Google::Apis::BooksV1::Volume>

Corresponds to the JSON property volumes

Returns:



1371
1372
1373
# File 'generated/google/apis/books_v1/classes.rb', line 1371

def volumes
  @volumes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1378
1379
1380
1381
1382
1383
1384
1385
# File 'generated/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