Class: Google::Apis::TagmanagerV2::QuickPreviewResponse

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

Response to quick previewing a workspace.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ QuickPreviewResponse

Returns a new instance of QuickPreviewResponse.



1636
1637
1638
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 1636

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

Instance Attribute Details

#compiler_errorBoolean Also known as: compiler_error?

Were there compiler errors or not. Corresponds to the JSON property compilerError

Returns:

  • (Boolean)


1623
1624
1625
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 1623

def compiler_error
  @compiler_error
end

#container_versionGoogle::Apis::TagmanagerV2::ContainerVersion

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



1629
1630
1631
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 1629

def container_version
  @container_version
end

#sync_statusGoogle::Apis::TagmanagerV2::SyncStatus

The status of a workspace after synchronization. Corresponds to the JSON property syncStatus



1634
1635
1636
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 1634

def sync_status
  @sync_status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1641
1642
1643
1644
1645
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 1641

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