Class: Google::Apis::ToolresultsV1beta3::InAppPurchasesFound
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ToolresultsV1beta3::InAppPurchasesFound
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/toolresults_v1beta3/classes.rb,
lib/google/apis/toolresults_v1beta3/representations.rb,
lib/google/apis/toolresults_v1beta3/representations.rb 
Overview
Additional details of in-app purchases encountered during the crawl.
Instance Attribute Summary collapse
- 
  
    
      #in_app_purchases_flows_explored  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of in-app purchases flows explored: how many times the robo tries to buy a SKU.
 - 
  
    
      #in_app_purchases_flows_started  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of in-app purchases flows started.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InAppPurchasesFound 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of InAppPurchasesFound.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ InAppPurchasesFound
Returns a new instance of InAppPurchasesFound.
      1188 1189 1190  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1188 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#in_app_purchases_flows_explored ⇒ Fixnum
The total number of in-app purchases flows explored: how many times the robo
tries to buy a SKU.
Corresponds to the JSON property inAppPurchasesFlowsExplored
      1181 1182 1183  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1181 def in_app_purchases_flows_explored @in_app_purchases_flows_explored end  | 
  
#in_app_purchases_flows_started ⇒ Fixnum
The total number of in-app purchases flows started.
Corresponds to the JSON property inAppPurchasesFlowsStarted
      1186 1187 1188  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1186 def in_app_purchases_flows_started @in_app_purchases_flows_started end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1193 1194 1195 1196  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1193 def update!(**args) @in_app_purchases_flows_explored = args[:in_app_purchases_flows_explored] if args.key?(:in_app_purchases_flows_explored) @in_app_purchases_flows_started = args[:in_app_purchases_flows_started] if args.key?(:in_app_purchases_flows_started) end  |