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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Cluster

Returns a new instance of Cluster.



1409
1410
1411
# File 'generated/google/apis/books_v1/classes.rb', line 1409

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

Instance Attribute Details

Corresponds to the JSON property banner_with_content_container



1382
1383
1384
# File 'generated/google/apis/books_v1/classes.rb', line 1382

def banner_with_content_container
  @banner_with_content_container
end

#sub_titleString

Corresponds to the JSON property subTitle

Returns:

  • (String)


1387
1388
1389
# File 'generated/google/apis/books_v1/classes.rb', line 1387

def sub_title
  @sub_title
end

#titleString

Corresponds to the JSON property title

Returns:

  • (String)


1392
1393
1394
# File 'generated/google/apis/books_v1/classes.rb', line 1392

def title
  @title
end

#total_volumesFixnum

Corresponds to the JSON property totalVolumes

Returns:

  • (Fixnum)


1397
1398
1399
# File 'generated/google/apis/books_v1/classes.rb', line 1397

def total_volumes
  @total_volumes
end

#uidString

Corresponds to the JSON property uid

Returns:

  • (String)


1402
1403
1404
# File 'generated/google/apis/books_v1/classes.rb', line 1402

def uid
  @uid
end

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

Corresponds to the JSON property volumes

Returns:



1407
1408
1409
# File 'generated/google/apis/books_v1/classes.rb', line 1407

def volumes
  @volumes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1414
1415
1416
1417
1418
1419
1420
1421
# File 'generated/google/apis/books_v1/classes.rb', line 1414

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