Class: Google::Apis::TestingV1::ObbFile
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::TestingV1::ObbFile
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/testing_v1/classes.rb,
 generated/google/apis/testing_v1/representations.rb,
 generated/google/apis/testing_v1/representations.rb
Overview
An opaque binary blob file to install on the device before the test starts
Instance Attribute Summary collapse
- 
  
    
      #obb  ⇒ Google::Apis::TestingV1::FileReference 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A reference to a file, used for user inputs. 
- 
  
    
      #obb_file_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    OBB file name which must conform to the format as specified by Android e.g. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ObbFile 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ObbFile. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ObbFile
Returns a new instance of ObbFile
| 1193 1194 1195 | # File 'generated/google/apis/testing_v1/classes.rb', line 1193 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#obb ⇒ Google::Apis::TestingV1::FileReference
A reference to a file, used for user inputs.
Corresponds to the JSON property obb
| 1180 1181 1182 | # File 'generated/google/apis/testing_v1/classes.rb', line 1180 def obb @obb end | 
#obb_file_name ⇒ String
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
obbFileName
| 1191 1192 1193 | # File 'generated/google/apis/testing_v1/classes.rb', line 1191 def obb_file_name @obb_file_name end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1198 1199 1200 1201 | # File 'generated/google/apis/testing_v1/classes.rb', line 1198 def update!(**args) @obb = args[:obb] if args.key?(:obb) @obb_file_name = args[:obb_file_name] if args.key?(:obb_file_name) end |