class Google::Apis::TestingV1::DeviceFile

A single device file description.

Attributes

obb_file[RW]

An opaque binary blob file to install on the device before the test starts. Corresponds to the JSON property `obbFile` @return [Google::Apis::TestingV1::ObbFile]

regular_file[RW]

A file or directory to install on the device before the test starts. Corresponds to the JSON property `regularFile` @return [Google::Apis::TestingV1::RegularFile]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 861
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 866
def update!(**args)
  @obb_file = args[:obb_file] if args.key?(:obb_file)
  @regular_file = args[:regular_file] if args.key?(:regular_file)
end