class Google::Apis::BooksV1::Series::Series

Attributes

banner_image_url[RW]

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

image_url[RW]

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

series_id[RW]

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

series_type[RW]

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

title[RW]

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

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/books_v1/classes.rb, line 2460
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/books_v1/classes.rb, line 2465
def update!(**args)
  @banner_image_url = args[:banner_image_url] if args.key?(:banner_image_url)
  @image_url = args[:image_url] if args.key?(:image_url)
  @series_id = args[:series_id] if args.key?(:series_id)
  @series_type = args[:series_type] if args.key?(:series_type)
  @title = args[:title] if args.key?(:title)
end