class Google::Apis::AnalyticsV3::FilterRef

JSON template for a profile filter link.

Attributes

account_id[RW]

Account ID to which this filter belongs. Corresponds to the JSON property `accountId` @return [String]

href[RW]

Link for this filter. Corresponds to the JSON property `href` @return [String]

id[RW]

Filter ID. Corresponds to the JSON property `id` @return [String]

kind[RW]

Kind value for filter reference. Corresponds to the JSON property `kind` @return [String]

name[RW]

Name of this filter. Corresponds to the JSON property `name` @return [String]

Public Class Methods

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