Class: Google::Apis::AndroidpublisherV3::InappproductsDeleteRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InappproductsDeleteRequest

Returns a new instance of InappproductsDeleteRequest.



4563
4564
4565
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 4563

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#latency_toleranceString

Optional. The latency tolerance for the propagation of this product update. Defaults to latency-sensitive. Corresponds to the JSON property latencyTolerance

Returns:

  • (String)


4551
4552
4553
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 4551

def latency_tolerance
  @latency_tolerance
end

#package_nameString

Package name of the app. Corresponds to the JSON property packageName

Returns:

  • (String)


4556
4557
4558
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 4556

def package_name
  @package_name
end

#skuString

Unique identifier for the in-app product. Corresponds to the JSON property sku

Returns:

  • (String)


4561
4562
4563
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 4561

def sku
  @sku
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4568
4569
4570
4571
4572
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 4568

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