class Google::Apis::TagmanagerV1::Account

Represents a Google Tag Manager Account.

Attributes

account_id[RW]

The Account ID uniquely identifies the GTM Account. Corresponds to the JSON property `accountId` @return [String]

fingerprint[RW]

The fingerprint of the GTM Account as computed at storage time. This value is recomputed whenever the account is modified. Corresponds to the JSON property `fingerprint` @return [String]

name[RW]

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

share_data[RW]

Whether the account shares data anonymously with Google and others. Corresponds to the JSON property `shareData` @return [Boolean]

share_data?[RW]

Whether the account shares data anonymously with Google and others. Corresponds to the JSON property `shareData` @return [Boolean]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/tagmanager_v1/classes.rb, line 56
def update!(**args)
  @account_id = args[:account_id] if args.key?(:account_id)
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
  @name = args[:name] if args.key?(:name)
  @share_data = args[:share_data] if args.key?(:share_data)
end