Class: Google::Apis::AndroidpublisherV3::BundlesListResponse
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::BundlesListResponse
- 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
Response listing all app bundles.
Instance Attribute Summary collapse
-
#bundles ⇒ Array<Google::Apis::AndroidpublisherV3::Bundle>
All app bundles.
-
#kind ⇒ String
The kind of this response ("androidpublisher#bundlesListResponse").
Instance Method Summary collapse
-
#initialize(**args) ⇒ BundlesListResponse
constructor
A new instance of BundlesListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BundlesListResponse
Returns a new instance of BundlesListResponse.
457 458 459 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 457 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bundles ⇒ Array<Google::Apis::AndroidpublisherV3::Bundle>
All app bundles.
Corresponds to the JSON property bundles
450 451 452 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 450 def bundles @bundles end |
#kind ⇒ String
The kind of this response ("androidpublisher#bundlesListResponse").
Corresponds to the JSON property kind
455 456 457 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 455 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
462 463 464 465 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 462 def update!(**args) @bundles = args[:bundles] if args.key?(:bundles) @kind = args[:kind] if args.key?(:kind) end |