Class: Google::Apis::TagmanagerV2::ZoneChildContainer
- Inherits:
-
Object
- Object
- Google::Apis::TagmanagerV2::ZoneChildContainer
- 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
Represents a child container of a Zone.
Instance Attribute Summary collapse
-
#nickname ⇒ String
The zone's nickname for the child container.
-
#public_id ⇒ String
The child container's public id.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ZoneChildContainer
constructor
A new instance of ZoneChildContainer.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ZoneChildContainer
Returns a new instance of ZoneChildContainer
2585 2586 2587 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 2585 def initialize(**args) update!(**args) end |
Instance Attribute Details
#nickname ⇒ String
The zone's nickname for the child container.
Corresponds to the JSON property nickname
2578 2579 2580 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 2578 def nickname @nickname end |
#public_id ⇒ String
The child container's public id.
Corresponds to the JSON property publicId
2583 2584 2585 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 2583 def public_id @public_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2590 2591 2592 2593 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 2590 def update!(**args) @nickname = args[:nickname] if args.key?(:nickname) @public_id = args[:public_id] if args.key?(:public_id) end |