Class: Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaAccountSummary
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaAccountSummary
- 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
-
#account ⇒ String
Resource name of account referred to by this account summary Format: accounts/
account_id
Example: "accounts/1000" Corresponds to the JSON propertyaccount
. -
#display_name ⇒ String
Display name for the account referred to in this account summary.
-
#name ⇒ String
Resource name for this account summary.
-
#property_summaries ⇒ Array<Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaPropertySummary>
List of summaries for child accounts of this account.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1betaAccountSummary
constructor
A new instance of GoogleAnalyticsAdminV1betaAccountSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#account ⇒ String
Resource name of account referred to by this account summary Format: accounts/
account_id
Example: "accounts/1000"
Corresponds to the JSON property account
640 641 642 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 640 def account @account end |
#display_name ⇒ String
Display name for the account referred to in this account summary.
Corresponds to the JSON property displayName
645 646 647 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 645 def display_name @display_name end |
#name ⇒ String
Resource name for this account summary. Format: accountSummaries/account_id
Example: "accountSummaries/1000"
Corresponds to the JSON property name
651 652 653 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 651 def name @name end |
#property_summaries ⇒ Array<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 |