class Google::Apis::TagmanagerV1::ContainerVersionHeader
Attributes
GTM Account ID. Corresponds to the JSON property `accountId` @return [String]
GTM Container ID. Corresponds to the JSON property `containerId` @return [String]
A value of true indicates this container version has been deleted. Corresponds to the JSON property `deleted` @return [Boolean]
A value of true indicates this container version has been deleted. Corresponds to the JSON property `deleted` @return [Boolean]
Container version display name. Corresponds to the JSON property `name` @return [String]
Number of macros in the container version. Corresponds to the JSON property `numMacros` @return [String]
Number of rules in the container version. Corresponds to the JSON property `numRules` @return [String]
Number of triggers in the container version. Corresponds to the JSON property `numTriggers` @return [String]
Number of variables in the container version. Corresponds to the JSON property `numVariables` @return [String]
Public Class Methods
# File generated/google/apis/tagmanager_v1/classes.rb, line 383 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/tagmanager_v1/classes.rb, line 388 def update!(**args) @account_id = args[:account_id] if args.key?(:account_id) @container_id = args[:container_id] if args.key?(:container_id) @container_version_id = args[:container_version_id] if args.key?(:container_version_id) @deleted = args[:deleted] if args.key?(:deleted) @name = args[:name] if args.key?(:name) @num_macros = args[:num_macros] if args.key?(:num_macros) @num_rules = args[:num_rules] if args.key?(:num_rules) @num_tags = args[:num_tags] if args.key?(:num_tags) @num_triggers = args[:num_triggers] if args.key?(:num_triggers) @num_variables = args[:num_variables] if args.key?(:num_variables) end