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



142
143
144
# File 'generated/google/apis/partners_v2/classes.rb', line 142

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)


129
130
131
# File 'generated/google/apis/partners_v2/classes.rb', line 129

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)


134
135
136
# File 'generated/google/apis/partners_v2/classes.rb', line 134

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)


140
141
142
# File 'generated/google/apis/partners_v2/classes.rb', line 140

def search_views_count
  @search_views_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



147
148
149
150
151
# File 'generated/google/apis/partners_v2/classes.rb', line 147

def update!(**args)
  @contacts_count = args[:contacts_count] if args.key?(:contacts_count)
  @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)
end