Class: Google::Apis::ContentV2::CustomGroup
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::CustomGroup
- Defined in:
- generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Array<Google::Apis::ContentV2::CustomAttribute>
The sub-attributes.
-
#name ⇒ String
The name of the group.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomGroup
constructor
A new instance of CustomGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ CustomGroup
Returns a new instance of CustomGroup
1649 1650 1651 |
# File 'generated/google/apis/content_v2/classes.rb', line 1649 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attributes ⇒ Array<Google::Apis::ContentV2::CustomAttribute>
The sub-attributes.
Corresponds to the JSON property attributes
1642 1643 1644 |
# File 'generated/google/apis/content_v2/classes.rb', line 1642 def attributes @attributes end |
#name ⇒ String
The name of the group. Underscores will be replaced by spaces upon insertion.
Corresponds to the JSON property name
1647 1648 1649 |
# File 'generated/google/apis/content_v2/classes.rb', line 1647 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1654 1655 1656 1657 |
# File 'generated/google/apis/content_v2/classes.rb', line 1654 def update!(**args) @attributes = args[:attributes] if args.key?(:attributes) @name = args[:name] if args.key?(:name) end |