Class: Google::Apis::TagmanagerV1::Account

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/tagmanager_v1/classes.rb,
generated/google/apis/tagmanager_v1/representations.rb,
generated/google/apis/tagmanager_v1/representations.rb

Overview

Represents a Google Tag Manager Account.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Account

Returns a new instance of Account.



53
54
55
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 53

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#account_idString

The Account ID uniquely identifies the GTM Account. Corresponds to the JSON property accountId

Returns:

  • (String)


32
33
34
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 32

def 
  @account_id
end

#fingerprintString

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

Returns:

  • (String)


38
39
40
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 38

def fingerprint
  @fingerprint
end

#nameString

Account display name. @mutable tagmanager.accounts.create @mutable tagmanager. accounts.update Corresponds to the JSON property name

Returns:

  • (String)


44
45
46
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 44

def name
  @name
end

#share_dataBoolean Also known as: share_data?

Whether the account shares data anonymously with Google and others. @mutable tagmanager.accounts.create @mutable tagmanager.accounts.update Corresponds to the JSON property shareData

Returns:

  • (Boolean)


50
51
52
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 50

def share_data
  @share_data
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



58
59
60
61
62
63
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 58

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