Class: Google::Apis::AndroidpublisherV3::KeyedGroup
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::KeyedGroup
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb
Overview
A group of responses, with a key.
Instance Attribute Summary collapse
-
#key ⇒ String
Required.
-
#responses ⇒ Array<Google::Apis::AndroidpublisherV3::NestedPolicyResponse>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ KeyedGroup
constructor
A new instance of KeyedGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ KeyedGroup
Returns a new instance of KeyedGroup.
5599 5600 5601 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5599 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
Required. Key for this group.
Corresponds to the JSON property key
5592 5593 5594 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5592 def key @key end |
#responses ⇒ Array<Google::Apis::AndroidpublisherV3::NestedPolicyResponse>
Required. Responses in this group.
Corresponds to the JSON property responses
5597 5598 5599 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5597 def responses @responses end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5604 5605 5606 5607 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5604 def update!(**args) @key = args[:key] if args.key?(:key) @responses = args[:responses] if args.key?(:responses) end |