Class: Google::Apis::TagmanagerV1::CreateContainerVersionResponse
- Inherits:
-
Object
- Object
- Google::Apis::TagmanagerV1::CreateContainerVersionResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/tagmanager_v1/classes.rb,
generated/google/apis/tagmanager_v1/representations.rb,
generated/google/apis/tagmanager_v1/representations.rb
Overview
Create container versions response.
Instance Attribute Summary collapse
-
#compiler_error ⇒ Boolean
(also: #compiler_error?)
Compiler errors or not.
-
#container_version ⇒ Google::Apis::TagmanagerV1::ContainerVersion
Represents a Google Tag Manager Container Version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreateContainerVersionResponse
constructor
A new instance of CreateContainerVersionResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CreateContainerVersionResponse
Returns a new instance of CreateContainerVersionResponse
449 450 451 |
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 449 def initialize(**args) update!(**args) end |
Instance Attribute Details
#compiler_error ⇒ Boolean Also known as: compiler_error?
Compiler errors or not.
Corresponds to the JSON property compilerError
441 442 443 |
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 441 def compiler_error @compiler_error end |
#container_version ⇒ Google::Apis::TagmanagerV1::ContainerVersion
Represents a Google Tag Manager Container Version.
Corresponds to the JSON property containerVersion
447 448 449 |
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 447 def container_version @container_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
454 455 456 457 |
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 454 def update!(**args) @compiler_error = args[:compiler_error] if args.key?(:compiler_error) @container_version = args[:container_version] if args.key?(:container_version) end |