class Google::Apis::TestingV1::IosDeviceFile
A file or directory to install on the device before the test starts.
Attributes
bundle_id[RW]
The bundle id of the app where this file lives. iOS apps sandbox their own filesystem, so app files must specify which app installed on the device. Corresponds to the JSON property `bundleId` @return [String]
content[RW]
A reference to a file, used for user inputs. Corresponds to the JSON property `content` @return [Google::Apis::TestingV1::FileReference]
device_path[RW]
Location of the file on the device, inside the app's sandboxed filesystem Corresponds to the JSON property `devicePath` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 1251 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 1256 def update!(**args) @bundle_id = args[:bundle_id] if args.key?(:bundle_id) @content = args[:content] if args.key?(:content) @device_path = args[:device_path] if args.key?(:device_path) end