Class: Google::Apis::TagmanagerV2::Account

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

Overview

Represents a Google Tag Manager Account.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Account

Returns a new instance of Account.



69
70
71
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 69

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_v2/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_v2/classes.rb', line 38

def fingerprint
  @fingerprint
end

#nameString

Account display name. Corresponds to the JSON property name

Returns:

  • (String)


45
46
47
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 45

def name
  @name
end

#pathString

GTM Account's API relative path. Corresponds to the JSON property path

Returns:

  • (String)


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

def path
  @path
end

#share_dataBoolean Also known as: share_data?

Whether the account shares data anonymously with Google and others. This flag enables benchmarking by sharing your data in an anonymous form. Google will remove all identifiable information about your website, combine the data with hundreds of other anonymous sites and report aggregate trends in the benchmarking service. Corresponds to the JSON property shareData

Returns:

  • (Boolean)


61
62
63
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 61

def share_data
  @share_data
end

#tag_manager_urlString

Auto generated link to the tag manager UI Corresponds to the JSON property tagManagerUrl

Returns:

  • (String)


67
68
69
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 67

def tag_manager_url
  @tag_manager_url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



74
75
76
77
78
79
80
81
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 74

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)
  @path = args[:path] if args.key?(:path)
  @share_data = args[:share_data] if args.key?(:share_data)
  @tag_manager_url = args[:tag_manager_url] if args.key?(:tag_manager_url)
end