Class: Google::Apis::AnalyticsV3::CustomDimension

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 Analytics Custom Dimension.

Defined Under Namespace

Classes: ParentLink

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

Returns a new instance of CustomDimension



1047
1048
1049
# File 'generated/google/apis/analytics_v3/classes.rb', line 1047

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

Instance Attribute Details

#account_idString

Account ID. Corresponds to the JSON property accountId

Returns:

  • (String)


987
988
989
# File 'generated/google/apis/analytics_v3/classes.rb', line 987

def 
  @account_id
end

#activeBoolean Also known as: active?

Boolean indicating whether the custom dimension is active. Corresponds to the JSON property active

Returns:

  • (Boolean)


992
993
994
# File 'generated/google/apis/analytics_v3/classes.rb', line 992

def active
  @active
end

#createdDateTime

Time the custom dimension was created. Corresponds to the JSON property created

Returns:

  • (DateTime)


998
999
1000
# File 'generated/google/apis/analytics_v3/classes.rb', line 998

def created
  @created
end

#idString

Custom dimension ID. Corresponds to the JSON property id

Returns:

  • (String)


1003
1004
1005
# File 'generated/google/apis/analytics_v3/classes.rb', line 1003

def id
  @id
end

#indexFixnum

Index of the custom dimension. Corresponds to the JSON property index

Returns:

  • (Fixnum)


1008
1009
1010
# File 'generated/google/apis/analytics_v3/classes.rb', line 1008

def index
  @index
end

#kindString

Kind value for a custom dimension. Set to "analytics#customDimension". It is a read-only field. Corresponds to the JSON property kind

Returns:

  • (String)


1014
1015
1016
# File 'generated/google/apis/analytics_v3/classes.rb', line 1014

def kind
  @kind
end

#nameString

Name of the custom dimension. Corresponds to the JSON property name

Returns:

  • (String)


1019
1020
1021
# File 'generated/google/apis/analytics_v3/classes.rb', line 1019

def name
  @name
end

Parent link for the custom dimension. Points to the property to which the custom dimension belongs. Corresponds to the JSON property parentLink



1025
1026
1027
# File 'generated/google/apis/analytics_v3/classes.rb', line 1025

def parent_link
  @parent_link
end

#scopeString

Scope of the custom dimension: HIT, SESSION, USER or PRODUCT. Corresponds to the JSON property scope

Returns:

  • (String)


1030
1031
1032
# File 'generated/google/apis/analytics_v3/classes.rb', line 1030

def scope
  @scope
end

Link for the custom dimension Corresponds to the JSON property selfLink

Returns:

  • (String)


1035
1036
1037
# File 'generated/google/apis/analytics_v3/classes.rb', line 1035

def self_link
  @self_link
end

#updatedDateTime

Time the custom dimension was last modified. Corresponds to the JSON property updated

Returns:

  • (DateTime)


1040
1041
1042
# File 'generated/google/apis/analytics_v3/classes.rb', line 1040

def updated
  @updated
end

#web_property_idString

Property ID. Corresponds to the JSON property webPropertyId

Returns:

  • (String)


1045
1046
1047
# File 'generated/google/apis/analytics_v3/classes.rb', line 1045

def web_property_id
  @web_property_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
# File 'generated/google/apis/analytics_v3/classes.rb', line 1052

def update!(**args)
  @account_id = args[:account_id] if args.key?(:account_id)
  @active = args[:active] if args.key?(:active)
  @created = args[:created] if args.key?(:created)
  @id = args[:id] if args.key?(:id)
  @index = args[:index] if args.key?(:index)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
  @parent_link = args[:parent_link] if args.key?(:parent_link)
  @scope = args[:scope] if args.key?(:scope)
  @self_link = args[:self_link] if args.key?(:self_link)
  @updated = args[:updated] if args.key?(:updated)
  @web_property_id = args[:web_property_id] if args.key?(:web_property_id)
end