Class: Google::Apis::AnalyticsV3::FilterRef

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/analytics_v3/classes.rb,
generated/google/apis/analytics_v3/representations.rb,
generated/google/apis/analytics_v3/representations.rb

Overview

JSON template for a profile filter link.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ FilterRef

Returns a new instance of FilterRef.



2319
2320
2321
# File 'generated/google/apis/analytics_v3/classes.rb', line 2319

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#account_idString

Account ID to which this filter belongs. Corresponds to the JSON property accountId

Returns:

  • (String)


2297
2298
2299
# File 'generated/google/apis/analytics_v3/classes.rb', line 2297

def 
  @account_id
end

#hrefString

Link for this filter. Corresponds to the JSON property href

Returns:

  • (String)


2302
2303
2304
# File 'generated/google/apis/analytics_v3/classes.rb', line 2302

def href
  @href
end

#idString

Filter ID. Corresponds to the JSON property id

Returns:

  • (String)


2307
2308
2309
# File 'generated/google/apis/analytics_v3/classes.rb', line 2307

def id
  @id
end

#kindString

Kind value for filter reference. Corresponds to the JSON property kind

Returns:

  • (String)


2312
2313
2314
# File 'generated/google/apis/analytics_v3/classes.rb', line 2312

def kind
  @kind
end

#nameString

Name of this filter. Corresponds to the JSON property name

Returns:

  • (String)


2317
2318
2319
# File 'generated/google/apis/analytics_v3/classes.rb', line 2317

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2324
2325
2326
2327
2328
2329
2330
# File 'generated/google/apis/analytics_v3/classes.rb', line 2324

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