class Google::Apis::AnalyticsreportingV4::ScreenviewData
Attributes
app_name[RW]
The application name. Corresponds to the JSON property `appName` @return [String]
mobile_device_branding[RW]
Mobile manufacturer or branded name. Eg: “Google”, “Apple” etc. Corresponds to the JSON property `mobileDeviceBranding` @return [String]
mobile_device_model[RW]
Mobile device model. Eg: “Pixel”, “iPhone” etc. Corresponds to the JSON property `mobileDeviceModel` @return [String]
screen_name[RW]
The name of the screen. Corresponds to the JSON property `screenName` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analyticsreporting_v4/classes.rb, line 1507 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 1512 def update!(**args) @app_name = args[:app_name] if args.key?(:app_name) @mobile_device_branding = args[:mobile_device_branding] if args.key?(:mobile_device_branding) @mobile_device_model = args[:mobile_device_model] if args.key?(:mobile_device_model) @screen_name = args[:screen_name] if args.key?(:screen_name) end