Class: Google::Apis::TagmanagerV2::QuickPreviewResponse
- Inherits:
-
Object
- Object
- Google::Apis::TagmanagerV2::QuickPreviewResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/tagmanager_v2/classes.rb,
generated/google/apis/tagmanager_v2/representations.rb,
generated/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.
-
#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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ QuickPreviewResponse
Returns a new instance of QuickPreviewResponse
1324 1325 1326 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1324 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
1311 1312 1313 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1311 def compiler_error @compiler_error end |
#container_version ⇒ Google::Apis::TagmanagerV2::ContainerVersion
Represents a Google Tag Manager Container Version.
Corresponds to the JSON property containerVersion
1317 1318 1319 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1317 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
1322 1323 1324 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1322 def sync_status @sync_status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1329 1330 1331 1332 1333 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1329 def update!(**args) @compiler_error = args[:compiler_error] if args.key?(:compiler_error) @container_version = args[:container_version] if args.key?(:container_version) @sync_status = args[:sync_status] if args.key?(:sync_status) end |