class Google::Apis::TagmanagerV1::Folder

Represents a Google Tag Manager Folder.

Attributes

account_id[RW]

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

container_id[RW]

GTM Container ID. Corresponds to the JSON property `containerId` @return [String]

fingerprint[RW]

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

folder_id[RW]

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

name[RW]

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

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/tagmanager_v1/classes.rb, line 581
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 586
def update!(**args)
  @account_id = args[:account_id] if args.key?(:account_id)
  @container_id = args[:container_id] if args.key?(:container_id)
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
  @folder_id = args[:folder_id] if args.key?(:folder_id)
  @name = args[:name] if args.key?(:name)
end