Class: Google::Apis::AndroidpublisherV3::SplitApkMetadata

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SplitApkMetadata

Returns a new instance of SplitApkMetadata.



5228
5229
5230
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5228

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#is_master_splitBoolean Also known as: is_master_split?

Indicates whether this APK is the main split of the module. Corresponds to the JSON property isMasterSplit

Returns:

  • (Boolean)


5220
5221
5222
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5220

def is_master_split
  @is_master_split
end

#split_idString

Id of the split. Corresponds to the JSON property splitId

Returns:

  • (String)


5226
5227
5228
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5226

def split_id
  @split_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5233
5234
5235
5236
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5233

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