class Google::Apis::TagmanagerV1::CreateContainerVersionRequestVersionOptions
Options for new container versions.
Attributes
name[RW]
The name of the container version to be created. Corresponds to the JSON property `name` @return [String]
notes[RW]
The notes of the container version to be created. Corresponds to the JSON property `notes` @return [String]
quick_preview[RW]
The creation of this version may be for quick preview and shouldn't be saved. Corresponds to the JSON property `quickPreview` @return [Boolean]
quick_preview?[RW]
The creation of this version may be for quick preview and shouldn't be saved. Corresponds to the JSON property `quickPreview` @return [Boolean]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/tagmanager_v1/classes.rb, line 422 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/tagmanager_v1/classes.rb, line 427 def update!(**args) @name = args[:name] if args.key?(:name) @notes = args[:notes] if args.key?(:notes) @quick_preview = args[:quick_preview] if args.key?(:quick_preview) end