Class: Google::Apis::TagmanagerV2::QuickPreviewResponse
- Inherits:
-
Object
- Object
- Google::Apis::TagmanagerV2::QuickPreviewResponse
- 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
Response to quick previewing a workspace.
Instance Attribute Summary collapse
-
#compiler_error ⇒ Boolean
(also: #compiler_error?)
Were there 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.
-
#sync_status ⇒ Google::Apis::TagmanagerV2::SyncStatus
The status of a workspace after synchronization.
Instance Method Summary collapse
-
#initialize(**args) ⇒ QuickPreviewResponse
constructor
A new instance of QuickPreviewResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ QuickPreviewResponse
Returns a new instance of QuickPreviewResponse.
2114 2115 2116 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 2114 def initialize(**args) update!(**args) end |
Instance Attribute Details
#compiler_error ⇒ Boolean Also known as: compiler_error?
Were there compiler errors or not.
Corresponds to the JSON property compilerError
2096 2097 2098 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 2096 def compiler_error @compiler_error end |
#compiler_errors ⇒ Array<Google::Apis::TagmanagerV2::CompilerErrorLite>
Compiler error details.
Corresponds to the JSON property compilerErrors
2102 2103 2104 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 2102 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
2107 2108 2109 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 2107 def container_version @container_version end |
#sync_status ⇒ Google::Apis::TagmanagerV2::SyncStatus
The status of a workspace after synchronization.
Corresponds to the JSON property syncStatus
2112 2113 2114 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 2112 def sync_status @sync_status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2119 2120 2121 2122 2123 2124 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 2119 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) @sync_status = args[:sync_status] if args.key?(:sync_status) end |