Class: Google::Apis::TagmanagerV2::CreateContainerVersionRequestVersionOptions

Inherits:
Object
  • Object
show all
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

Options for new container versions.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CreateContainerVersionRequestVersionOptions

Returns a new instance of CreateContainerVersionRequestVersionOptions.



655
656
657
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 655

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

Instance Attribute Details

#nameString

The name of the container version to be created. Corresponds to the JSON property name

Returns:

  • (String)


648
649
650
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 648

def name
  @name
end

#notesString

The notes of the container version to be created. Corresponds to the JSON property notes

Returns:

  • (String)


653
654
655
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 653

def notes
  @notes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



660
661
662
663
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 660

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @notes = args[:notes] if args.key?(:notes)
end