Class: Google::Apis::TagmanagerV2::PublishContainerVersionResponse
- Inherits:
-
Object
- Object
- Google::Apis::TagmanagerV2::PublishContainerVersionResponse
- 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
-
#compiler_error ⇒ Boolean
(also: #compiler_error?)
Compiler errors or not.
-
#compiler_errors ⇒ Array<Google::Apis::TagmanagerV2::CompilerErrorLite>
Compiler error details.
-
#container_version ⇒ Google::Apis::TagmanagerV2::ContainerVersion
Represents a Google Tag Manager Container Version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PublishContainerVersionResponse
constructor
A new instance of PublishContainerVersionResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PublishContainerVersionResponse
Returns a new instance of PublishContainerVersionResponse.
2077 2078 2079 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 2077 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
2064 2065 2066 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 2064 def compiler_error @compiler_error end |
#compiler_errors ⇒ Array<Google::Apis::TagmanagerV2::CompilerErrorLite>
Compiler error details.
Corresponds to the JSON property compilerErrors
2070 2071 2072 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 2070 def compiler_errors @compiler_errors end |
#container_version ⇒ Google::Apis::TagmanagerV2::ContainerVersion
Represents a Google Tag Manager Container Version.
Corresponds to the JSON property containerVersion
2075 2076 2077 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 2075 def container_version @container_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2082 2083 2084 2085 2086 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 2082 def update!(**args) @compiler_error = args[:compiler_error] if args.key?(:compiler_error) @compiler_errors = args[:compiler_errors] if args.key?(:compiler_errors) @container_version = args[:container_version] if args.key?(:container_version) end |