Class: Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaDataStreamWebStreamData
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaDataStreamWebStreamData
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/analyticsadmin_v1beta/classes.rb,
lib/google/apis/analyticsadmin_v1beta/representations.rb,
lib/google/apis/analyticsadmin_v1beta/representations.rb
Overview
Data specific to web streams.
Instance Attribute Summary collapse
-
#default_uri ⇒ String
Domain name of the web app being measured, or empty.
-
#firebase_app_id ⇒ String
Output only.
-
#measurement_id ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1betaDataStreamWebStreamData
constructor
A new instance of GoogleAnalyticsAdminV1betaDataStreamWebStreamData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1betaDataStreamWebStreamData
Returns a new instance of GoogleAnalyticsAdminV1betaDataStreamWebStreamData.
1339 1340 1341 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1339 def initialize(**args) update!(**args) end |
Instance Attribute Details
#default_uri ⇒ String
Domain name of the web app being measured, or empty. Example: "http://www.
google.com", "https://www.google.com"
Corresponds to the JSON property defaultUri
1326 1327 1328 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1326 def default_uri @default_uri end |
#firebase_app_id ⇒ String
Output only. ID of the corresponding web app in Firebase, if any. This ID can
change if the web app is deleted and recreated.
Corresponds to the JSON property firebaseAppId
1332 1333 1334 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1332 def firebase_app_id @firebase_app_id end |
#measurement_id ⇒ String
Output only. Analytics Measurement ID. Example: "G-1A2BCD345E"
Corresponds to the JSON property measurementId
1337 1338 1339 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1337 def measurement_id @measurement_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1344 1345 1346 1347 1348 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1344 def update!(**args) @default_uri = args[:default_uri] if args.key?(:default_uri) @firebase_app_id = args[:firebase_app_id] if args.key?(:firebase_app_id) @measurement_id = args[:measurement_id] if args.key?(:measurement_id) end |