Class: Google::Apis::TagmanagerV2::PublishContainerVersionResponse

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

Overview

Publish container version response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PublishContainerVersionResponse

Returns a new instance of PublishContainerVersionResponse.



1580
1581
1582
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 1580

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

Instance Attribute Details

#compiler_errorBoolean Also known as: compiler_error?

Compiler errors or not. Corresponds to the JSON property compilerError

Returns:

  • (Boolean)


1572
1573
1574
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 1572

def compiler_error
  @compiler_error
end

#container_versionGoogle::Apis::TagmanagerV2::ContainerVersion

Represents a Google Tag Manager Container Version. Corresponds to the JSON property containerVersion



1578
1579
1580
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 1578

def container_version
  @container_version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1585
1586
1587
1588
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 1585

def update!(**args)
  @compiler_error = args[:compiler_error] if args.key?(:compiler_error)
  @container_version = args[:container_version] if args.key?(:container_version)
end