class Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccount

A resource message representing a Google Analytics account.

Attributes

create_time[RW]

Output only. Time when this account was originally created. Corresponds to the JSON property `createTime` @return [String]

deleted[RW]

Output only. Indicates whether this Account is soft-deleted or not. Deleted accounts are excluded from List results unless specifically requested. Corresponds to the JSON property `deleted` @return [Boolean]

deleted?[RW]

Output only. Indicates whether this Account is soft-deleted or not. Deleted accounts are excluded from List results unless specifically requested. Corresponds to the JSON property `deleted` @return [Boolean]

display_name[RW]

Required. Human-readable display name for this account. Corresponds to the JSON property `displayName` @return [String]

name[RW]

Output only. Resource name of this account. Format: accounts/`account` Example: “accounts/100” Corresponds to the JSON property `name` @return [String]

region_code[RW]

Country of business. Must be a Unicode CLDR region code. Corresponds to the JSON property `regionCode` @return [String]

update_time[RW]

Output only. Time when account payload fields were last updated. Corresponds to the JSON property `updateTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 62
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 67
def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @deleted = args[:deleted] if args.key?(:deleted)
  @display_name = args[:display_name] if args.key?(:display_name)
  @name = args[:name] if args.key?(:name)
  @region_code = args[:region_code] if args.key?(:region_code)
  @update_time = args[:update_time] if args.key?(:update_time)
end