Class: Google::Apis::BooksV1::Series::Series
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::BooksV1::Series::Series
 
- 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
- 
  
    
      #banner_image_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property bannerImageUrl.
- 
  
    
      #image_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property imageUrl.
- 
  
    
      #series_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property seriesId.
- 
  
    
      #series_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property seriesType.
- 
  
    
      #title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property title.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Series 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Series. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Series
Returns a new instance of Series
| 2536 2537 2538 | # File 'generated/google/apis/books_v1/classes.rb', line 2536 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#banner_image_url ⇒ String
Corresponds to the JSON property bannerImageUrl
| 2514 2515 2516 | # File 'generated/google/apis/books_v1/classes.rb', line 2514 def @banner_image_url end | 
#image_url ⇒ String
Corresponds to the JSON property imageUrl
| 2519 2520 2521 | # File 'generated/google/apis/books_v1/classes.rb', line 2519 def image_url @image_url end | 
#series_id ⇒ String
Corresponds to the JSON property seriesId
| 2524 2525 2526 | # File 'generated/google/apis/books_v1/classes.rb', line 2524 def series_id @series_id end | 
#series_type ⇒ String
Corresponds to the JSON property seriesType
| 2529 2530 2531 | # File 'generated/google/apis/books_v1/classes.rb', line 2529 def series_type @series_type end | 
#title ⇒ String
Corresponds to the JSON property title
| 2534 2535 2536 | # File 'generated/google/apis/books_v1/classes.rb', line 2534 def title @title end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2541 2542 2543 2544 2545 2546 2547 | # File 'generated/google/apis/books_v1/classes.rb', line 2541 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 |