Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaProperty
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaProperty
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/analyticsadmin_v1alpha/classes.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb
Overview
A resource message representing a Google Analytics GA4 property.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#currency_code ⇒ String
The currency type used in reports involving monetary values.
-
#deleted ⇒ Boolean
(also: #deleted?)
Output only.
-
#display_name ⇒ String
Required.
-
#industry_category ⇒ String
Industry associated with this property Example: AUTOMOTIVE, FOOD_AND_DRINK Corresponds to the JSON property
industryCategory. -
#name ⇒ String
Output only.
-
#parent ⇒ String
Immutable.
-
#time_zone ⇒ String
Reporting Time Zone, used as the day boundary for reports, regardless of where the data originates.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaProperty
constructor
A new instance of GoogleAnalyticsAdminV1alphaProperty.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaProperty
Returns a new instance of GoogleAnalyticsAdminV1alphaProperty.
1099 1100 1101 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1099 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Time when the entity was originally created.
Corresponds to the JSON property createTime
1046 1047 1048 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1046 def create_time @create_time end |
#currency_code ⇒ String
The currency type used in reports involving monetary values. Format: https://
en.wikipedia.org/wiki/ISO_4217 Examples: "USD", "EUR", "JPY"
Corresponds to the JSON property currencyCode
1052 1053 1054 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1052 def currency_code @currency_code end |
#deleted ⇒ Boolean Also known as: deleted?
Output only. Indicates whether this Property is soft-deleted or not. Deleted
properties are excluded from List results unless specifically requested.
Corresponds to the JSON property deleted
1058 1059 1060 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1058 def deleted @deleted end |
#display_name ⇒ String
Required. Human-readable display name for this property. The max allowed
display name length is 100 UTF-16 code units.
Corresponds to the JSON property displayName
1065 1066 1067 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1065 def display_name @display_name end |
#industry_category ⇒ String
Industry associated with this property Example: AUTOMOTIVE, FOOD_AND_DRINK
Corresponds to the JSON property industryCategory
1070 1071 1072 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1070 def industry_category @industry_category end |
#name ⇒ String
Output only. Resource name of this property. Format: properties/property_id
Example: "properties/1000"
Corresponds to the JSON property name
1076 1077 1078 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1076 def name @name end |
#parent ⇒ String
Immutable. Resource name of this property's logical parent. Note: The Property-
Moving UI can be used to change the parent. Format: accounts/account Example:
"accounts/100"
Corresponds to the JSON property parent
1083 1084 1085 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1083 def parent @parent end |
#time_zone ⇒ String
Reporting Time Zone, used as the day boundary for reports, regardless of where
the data originates. If the time zone honors DST, Analytics will automatically
adjust for the changes. NOTE: Changing the time zone only affects data going
forward, and is not applied retroactively. Format: https://www.iana.org/time-
zones Example: "America/Los_Angeles"
Corresponds to the JSON property timeZone
1092 1093 1094 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1092 def time_zone @time_zone end |
#update_time ⇒ String
Output only. Time when entity payload fields were last updated.
Corresponds to the JSON property updateTime
1097 1098 1099 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1097 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1104 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @currency_code = args[:currency_code] if args.key?(:currency_code) @deleted = args[:deleted] if args.key?(:deleted) @display_name = args[:display_name] if args.key?(:display_name) @industry_category = args[:industry_category] if args.key?(:industry_category) @name = args[:name] if args.key?(:name) @parent = args[:parent] if args.key?(:parent) @time_zone = args[:time_zone] if args.key?(:time_zone) @update_time = args[:update_time] if args.key?(:update_time) end |