Class: Google::Apis::TagmanagerV2::ZoneChildContainer
- Inherits:
-
Object
- Object
- Google::Apis::TagmanagerV2::ZoneChildContainer
- 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
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.
Constructor Details
#initialize(**args) ⇒ ZoneChildContainer
Returns a new instance of ZoneChildContainer.
3264 3265 3266 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 3264 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
3257 3258 3259 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 3257 def nickname @nickname end |
#public_id ⇒ String
The child container's public id.
Corresponds to the JSON property publicId
3262 3263 3264 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 3262 def public_id @public_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3269 3270 3271 3272 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 3269 def update!(**args) @nickname = args[:nickname] if args.key?(:nickname) @public_id = args[:public_id] if args.key?(:public_id) end |