Class: Google::Apis::PartnersV2::AnalyticsSummary

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/partners_v2/classes.rb,
generated/google/apis/partners_v2/representations.rb,
generated/google/apis/partners_v2/representations.rb

Overview

Analytics aggregated data for a Company for a given date range.

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) ⇒ AnalyticsSummary

Returns a new instance of AnalyticsSummary



494
495
496
# File 'generated/google/apis/partners_v2/classes.rb', line 494

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

Instance Attribute Details

#contacts_countFixnum

Aggregated number of times users contacted the Company for given date range. Corresponds to the JSON property contactsCount

Returns:

  • (Fixnum)


492
493
494
# File 'generated/google/apis/partners_v2/classes.rb', line 492

def contacts_count
  @contacts_count
end

#profile_views_countFixnum

Aggregated number of profile views for the Company for given date range. Corresponds to the JSON property profileViewsCount

Returns:

  • (Fixnum)


480
481
482
# File 'generated/google/apis/partners_v2/classes.rb', line 480

def profile_views_count
  @profile_views_count
end

#search_views_countFixnum

Aggregated number of times users saw the Company in Google Partners Search results for given date range. Corresponds to the JSON property searchViewsCount

Returns:

  • (Fixnum)


486
487
488
# File 'generated/google/apis/partners_v2/classes.rb', line 486

def search_views_count
  @search_views_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



499
500
501
502
503
# File 'generated/google/apis/partners_v2/classes.rb', line 499

def update!(**args)
  @profile_views_count = args[:profile_views_count] if args.key?(:profile_views_count)
  @search_views_count = args[:search_views_count] if args.key?(:search_views_count)
  @contacts_count = args[:contacts_count] if args.key?(:contacts_count)
end