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.
1201 1202 1203 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1201 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
1194 1195 1196 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1194 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
1199 1200 1201 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1199 def in_app_purchases_flows_started @in_app_purchases_flows_started end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1206 1207 1208 1209 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1206 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 |