class Google::Apis::TestingV1::ObbFile

An opaque binary blob file to install on the device before the test starts.

Attributes

obb[RW]

A reference to a file, used for user inputs. Corresponds to the JSON property `obb` @return [Google::Apis::TestingV1::FileReference]

obb_file_name[RW]

Required. OBB file name which must conform to the format as specified by Android e.g. [main|patch].0300110.com.example.android.obb which will be installed into /Android/obb// on the device. Corresponds to the JSON property `obbFileName` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 1692
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/testing_v1/classes.rb, line 1697
def update!(**args)
  @obb = args[:obb] if args.key?(:obb)
  @obb_file_name = args[:obb_file_name] if args.key?(:obb_file_name)
end