Class: Google::Apis::AnalyticsV3::Filters
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AnalyticsV3::Filters
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/analytics_v3/classes.rb,
generated/google/apis/analytics_v3/representations.rb,
generated/google/apis/analytics_v3/representations.rb 
Overview
A filter collection lists filters created by users in an Analytics account. Each resource in the collection corresponds to a filter.
Instance Attribute Summary collapse
- 
  
    
      #items  ⇒ Array<Google::Apis::AnalyticsV3::Filter> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of filters.
 - 
  
    
      #items_per_page  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum number of resources the response can contain, regardless of the actual number of resources returned.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Collection type.
 - 
  
    
      #next_link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Link to next page for this filter collection.
 - 
  
    
      #previous_link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Link to previous page for this filter collection.
 - 
  
    
      #start_index  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The starting index of the resources, which is 1 by default or otherwise specified by the start-index query parameter.
 - 
  
    
      #total_results  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of results for the query, regardless of the number of results in the response.
 - 
  
    
      #username  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Email ID of the authenticated user Corresponds to the JSON property
username. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Filters 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Filters.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Filters
Returns a new instance of Filters
      2573 2574 2575  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 2573 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#items ⇒ Array<Google::Apis::AnalyticsV3::Filter>
A list of filters.
Corresponds to the JSON property items
      2531 2532 2533  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 2531 def items @items end  | 
  
#items_per_page ⇒ Fixnum
The maximum number of resources the response can contain, regardless of the
actual number of resources returned. Its value ranges from 1 to 1,000 with a
value of 1000 by default, or otherwise specified by the max-results query
parameter.
Corresponds to the JSON property itemsPerPage
      2539 2540 2541  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 2539 def items_per_page @items_per_page end  | 
  
#kind ⇒ String
Collection type.
Corresponds to the JSON property kind
      2544 2545 2546  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 2544 def kind @kind end  | 
  
#next_link ⇒ String
Link to next page for this filter collection.
Corresponds to the JSON property nextLink
      2549 2550 2551  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 2549 def next_link @next_link end  | 
  
#previous_link ⇒ String
Link to previous page for this filter collection.
Corresponds to the JSON property previousLink
      2554 2555 2556  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 2554 def previous_link @previous_link end  | 
  
#start_index ⇒ Fixnum
The starting index of the resources, which is 1 by default or otherwise
specified by the start-index query parameter.
Corresponds to the JSON property startIndex
      2560 2561 2562  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 2560 def start_index @start_index end  | 
  
#total_results ⇒ Fixnum
The total number of results for the query, regardless of the number of results
in the response.
Corresponds to the JSON property totalResults
      2566 2567 2568  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 2566 def total_results @total_results end  | 
  
#username ⇒ String
Email ID of the authenticated user
Corresponds to the JSON property username
      2571 2572 2573  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 2571 def username @username end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2578 2579 2580 2581 2582 2583 2584 2585 2586 2587  | 
    
      # File 'generated/google/apis/analytics_v3/classes.rb', line 2578 def update!(**args) @items = args[:items] if args.key?(:items) @items_per_page = args[:items_per_page] if args.key?(:items_per_page) @kind = args[:kind] if args.key?(:kind) @next_link = args[:next_link] if args.key?(:next_link) @previous_link = args[:previous_link] if args.key?(:previous_link) @start_index = args[:start_index] if args.key?(:start_index) @total_results = args[:total_results] if args.key?(:total_results) @username = args[:username] if args.key?(:username) end  |