class Google::Apis::AnalyticsV3::AccountRef

JSON template for a linked account.

Attributes

href[RW]

Link for this account. Corresponds to the JSON property `href` @return [String]

id[RW]

Account ID. Corresponds to the JSON property `id` @return [String]

kind[RW]

Analytics account reference. Corresponds to the JSON property `kind` @return [String]

name[RW]

Account name. Corresponds to the JSON property `name` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analytics_v3/classes.rb, line 169
def update!(**args)
  @href = args[:href] if args.key?(:href)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
end