Class: Google::Apis::CustomsearchV1::Context
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CustomsearchV1::Context
 
- Defined in:
- generated/google/apis/customsearch_v1/classes.rb,
 generated/google/apis/customsearch_v1/representations.rb,
 generated/google/apis/customsearch_v1/representations.rb
Defined Under Namespace
Classes: Facet
Instance Attribute Summary collapse
- 
  
    
      #facets  ⇒ Array<Array<Google::Apis::CustomsearchV1::Context::Facet>> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property facets.
- 
  
    
      #title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property title.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Context 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Context. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Context
Returns a new instance of Context
| 39 40 41 | # File 'generated/google/apis/customsearch_v1/classes.rb', line 39 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#facets ⇒ Array<Array<Google::Apis::CustomsearchV1::Context::Facet>>
Corresponds to the JSON property facets
| 32 33 34 | # File 'generated/google/apis/customsearch_v1/classes.rb', line 32 def facets @facets end | 
#title ⇒ String
Corresponds to the JSON property title
| 37 38 39 | # File 'generated/google/apis/customsearch_v1/classes.rb', line 37 def title @title end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 44 45 46 47 | # File 'generated/google/apis/customsearch_v1/classes.rb', line 44 def update!(**args) @facets = args[:facets] if args.key?(:facets) @title = args[:title] if args.key?(:title) end |