Class: Google::Apis::AndroidpublisherV3::InappproductsDeleteRequest
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::InappproductsDeleteRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb
Overview
Request to delete an in-app product.
Instance Attribute Summary collapse
-
#latency_tolerance ⇒ String
Optional.
-
#package_name ⇒ String
Package name of the app.
-
#sku ⇒ String
Unique identifier for the in-app product.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InappproductsDeleteRequest
constructor
A new instance of InappproductsDeleteRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InappproductsDeleteRequest
Returns a new instance of InappproductsDeleteRequest.
3069 3070 3071 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3069 def initialize(**args) update!(**args) end |
Instance Attribute Details
#latency_tolerance ⇒ String
Optional. The latency tolerance for the propagation of this product update.
Defaults to latency-sensitive.
Corresponds to the JSON property latencyTolerance
3057 3058 3059 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3057 def latency_tolerance @latency_tolerance end |
#package_name ⇒ String
Package name of the app.
Corresponds to the JSON property packageName
3062 3063 3064 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3062 def package_name @package_name end |
#sku ⇒ String
Unique identifier for the in-app product.
Corresponds to the JSON property sku
3067 3068 3069 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3067 def sku @sku end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3074 3075 3076 3077 3078 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3074 def update!(**args) @latency_tolerance = args[:latency_tolerance] if args.key?(:latency_tolerance) @package_name = args[:package_name] if args.key?(:package_name) @sku = args[:sku] if args.key?(:sku) end |