class Google::Apis::AnalyticsV3::Experiment::ParentLink

Parent link for an experiment. Points to the view (profile) to which this experiment belongs.

Attributes

href[RW]

Link to the view (profile) to which this experiment belongs. This field is read-only. Corresponds to the JSON property `href` @return [String]

type[RW]

Value is “analytics#profile”. This field is read-only. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analytics_v3/classes.rb, line 1795
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 1800
def update!(**args)
  @href = args[:href] if args.key?(:href)
  @type = args[:type] if args.key?(:type)
end