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 Google Analytics properties.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAnalyticsAdminV1betaAccountSummary

Returns a new instance of GoogleAnalyticsAdminV1betaAccountSummary.



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

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)


640
641
642
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 640

def 
  @account
end

#display_nameString

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

Returns:

  • (String)


645
646
647
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 645

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)


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

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



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

def property_summaries
  @property_summaries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



663
664
665
666
667
668
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 663

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