Class: Google::Apis::AndroidpublisherV3::SplitApkMetadata
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::SplitApkMetadata
- 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
Holds data specific to Split APKs.
Instance Attribute Summary collapse
-
#is_master_split ⇒ Boolean
(also: #is_master_split?)
Indicates whether this APK is the main split of the module.
-
#split_id ⇒ String
Id of the split.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SplitApkMetadata
constructor
A new instance of SplitApkMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SplitApkMetadata
Returns a new instance of SplitApkMetadata.
8159 8160 8161 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 8159 def initialize(**args) update!(**args) end |
Instance Attribute Details
#is_master_split ⇒ Boolean Also known as: is_master_split?
Indicates whether this APK is the main split of the module.
Corresponds to the JSON property isMasterSplit
8151 8152 8153 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 8151 def is_master_split @is_master_split end |
#split_id ⇒ String
Id of the split.
Corresponds to the JSON property splitId
8157 8158 8159 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 8157 def split_id @split_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8164 8165 8166 8167 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 8164 def update!(**args) @is_master_split = args[:is_master_split] if args.key?(:is_master_split) @split_id = args[:split_id] if args.key?(:split_id) end |