class Google::Apis::TagmanagerV1::FolderEntities

Represents a Google Tag Manager Folder's contents.

Attributes

tag[RW]

The list of tags inside the folder. Corresponds to the JSON property `tag` @return [Array<Google::Apis::TagmanagerV1::Tag>]

trigger[RW]

The list of triggers inside the folder. Corresponds to the JSON property `trigger` @return [Array<Google::Apis::TagmanagerV1::Trigger>]

variable[RW]

The list of variables inside the folder. Corresponds to the JSON property `variable` @return [Array<Google::Apis::TagmanagerV1::Variable>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/tagmanager_v1/classes.rb, line 643
def update!(**args)
  @tag = args[:tag] if args.key?(:tag)
  @trigger = args[:trigger] if args.key?(:trigger)
  @variable = args[:variable] if args.key?(:variable)
end