Class: Google::Apis::AnalyticsV3::ProfileSummary

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 an Analytics ProfileSummary. ProfileSummary returns basic information (i.e., summary) for a profile.

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) ⇒ ProfileSummary

Returns a new instance of ProfileSummary



4376
4377
4378
# File 'generated/google/apis/analytics_v3/classes.rb', line 4376

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

Instance Attribute Details

#idString

View (profile) ID. Corresponds to the JSON property id

Returns:

  • (String)


4353
4354
4355
# File 'generated/google/apis/analytics_v3/classes.rb', line 4353

def id
  @id
end

#kindString

Resource type for Analytics ProfileSummary. Corresponds to the JSON property kind

Returns:

  • (String)


4358
4359
4360
# File 'generated/google/apis/analytics_v3/classes.rb', line 4358

def kind
  @kind
end

#nameString

View (profile) name. Corresponds to the JSON property name

Returns:

  • (String)


4363
4364
4365
# File 'generated/google/apis/analytics_v3/classes.rb', line 4363

def name
  @name
end

#starredBoolean Also known as: starred?

Indicates whether this view (profile) is starred or not. Corresponds to the JSON property starred

Returns:

  • (Boolean)


4368
4369
4370
# File 'generated/google/apis/analytics_v3/classes.rb', line 4368

def starred
  @starred
end

#typeString

View (Profile) type. Supported types: WEB or APP. Corresponds to the JSON property type

Returns:

  • (String)


4374
4375
4376
# File 'generated/google/apis/analytics_v3/classes.rb', line 4374

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4381
4382
4383
4384
4385
4386
4387
# File 'generated/google/apis/analytics_v3/classes.rb', line 4381

def update!(**args)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
  @starred = args[:starred] if args.key?(:starred)
  @type = args[:type] if args.key?(:type)
end