class Google::Apis::AnalyticsV3::GaData::ProfileInfo

Information for the view (profile), for which the Analytics data was requested.

Attributes

account_id[RW]

Account ID to which this view (profile) belongs. Corresponds to the JSON property `accountId` @return [String]

internal_web_property_id[RW]

Internal ID for the web property to which this view (profile) belongs. Corresponds to the JSON property `internalWebPropertyId` @return [String]

profile_id[RW]

View (Profile) ID. Corresponds to the JSON property `profileId` @return [String]

profile_name[RW]

View (Profile) name. Corresponds to the JSON property `profileName` @return [String]

table_id[RW]

Table ID for view (profile). Corresponds to the JSON property `tableId` @return [String]

web_property_id[RW]

Web Property ID to which this view (profile) belongs. Corresponds to the JSON property `webPropertyId` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analytics_v3/classes.rb, line 2785
def update!(**args)
  @account_id = args[:account_id] if args.key?(:account_id)
  @internal_web_property_id = args[:internal_web_property_id] if args.key?(:internal_web_property_id)
  @profile_id = args[:profile_id] if args.key?(:profile_id)
  @profile_name = args[:profile_name] if args.key?(:profile_name)
  @table_id = args[:table_id] if args.key?(:table_id)
  @web_property_id = args[:web_property_id] if args.key?(:web_property_id)
end