class Google::Apis::AnalyticsreportingV4::PageviewData

Represents details collected when the visitor views a page.

Attributes

page_path[RW]

The URL of the page that the visitor viewed. Corresponds to the JSON property `pagePath` @return [String]

page_title[RW]

The title of the page that the visitor viewed. Corresponds to the JSON property `pageTitle` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analyticsreporting_v4/classes.rb, line 959
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analyticsreporting_v4/classes.rb, line 964
def update!(**args)
  @page_path = args[:page_path] if args.key?(:page_path)
  @page_title = args[:page_title] if args.key?(:page_title)
end