Class: Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaAccountSummary

Inherits:
Object
  • Object
show all
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

A virtual resource representing an overview of an account and all its child GA4 properties.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAnalyticsAdminV1betaAccountSummary

Returns a new instance of GoogleAnalyticsAdminV1betaAccountSummary.



650
651
652
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 650

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

Instance Attribute Details

#accountString

Resource name of account referred to by this account summary Format: accounts/ account_id Example: "accounts/1000" Corresponds to the JSON property account

Returns:

  • (String)


632
633
634
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 632

def 
  @account
end

#display_nameString

Display name for the account referred to in this account summary. Corresponds to the JSON property displayName

Returns:

  • (String)


637
638
639
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 637

def display_name
  @display_name
end

#nameString

Resource name for this account summary. Format: accountSummaries/account_id Example: "accountSummaries/1000" Corresponds to the JSON property name

Returns:

  • (String)


643
644
645
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 643

def name
  @name
end

#property_summariesArray<Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaPropertySummary>

List of summaries for child accounts of this account. Corresponds to the JSON property propertySummaries



648
649
650
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 648

def property_summaries
  @property_summaries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



655
656
657
658
659
660
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 655

def update!(**args)
  @account = args[:account] if args.key?(:account)
  @display_name = args[:display_name] if args.key?(:display_name)
  @name = args[:name] if args.key?(:name)
  @property_summaries = args[:property_summaries] if args.key?(:property_summaries)
end