Class: Google::Apis::AndroidpublisherV3::GeneratedAssetPackSlice
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::GeneratedAssetPackSlice
- 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
Download metadata for an asset pack slice.
Instance Attribute Summary collapse
-
#download_id ⇒ String
Download ID, which uniquely identifies the APK to download.
-
#module_name ⇒ String
Name of the module that this asset slice belongs to.
-
#slice_id ⇒ String
Asset slice ID.
-
#version ⇒ Fixnum
Asset module version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GeneratedAssetPackSlice
constructor
A new instance of GeneratedAssetPackSlice.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GeneratedAssetPackSlice
Returns a new instance of GeneratedAssetPackSlice.
2565 2566 2567 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2565 def initialize(**args) update!(**args) end |
Instance Attribute Details
#download_id ⇒ String
Download ID, which uniquely identifies the APK to download. Should be supplied
to generatedapks.download method.
Corresponds to the JSON property downloadId
2548 2549 2550 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2548 def download_id @download_id end |
#module_name ⇒ String
Name of the module that this asset slice belongs to.
Corresponds to the JSON property moduleName
2553 2554 2555 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2553 def module_name @module_name end |
#slice_id ⇒ String
Asset slice ID.
Corresponds to the JSON property sliceId
2558 2559 2560 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2558 def slice_id @slice_id end |
#version ⇒ Fixnum
Asset module version.
Corresponds to the JSON property version
2563 2564 2565 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2563 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2570 2571 2572 2573 2574 2575 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2570 def update!(**args) @download_id = args[:download_id] if args.key?(:download_id) @module_name = args[:module_name] if args.key?(:module_name) @slice_id = args[:slice_id] if args.key?(:slice_id) @version = args[:version] if args.key?(:version) end |