class Google::Apis::AndroidpublisherV3::ExpansionFile
An expansion file. The resource for ExpansionFilesService.
Attributes
file_size[RW]
If set, this field indicates that this APK has an expansion file uploaded to it: this APK does not reference another APK's expansion file. The field's value is the size of the uploaded expansion file in bytes. Corresponds to the JSON property `fileSize` @return [Fixnum]
references_version[RW]
If set, this APK's expansion file references another APK's expansion file. The file_size
field will not be set. Corresponds to the JSON property `referencesVersion` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidpublisher_v3/classes.rb, line 514 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/androidpublisher_v3/classes.rb, line 519 def update!(**args) @file_size = args[:file_size] if args.key?(:file_size) @references_version = args[:references_version] if args.key?(:references_version) end