Class: Google::Apis::AndroidpublisherV3::UpdateAppStoreHostedAppRequest

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 update an app record for an app store hosted app.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UpdateAppStoreHostedAppRequest

Returns a new instance of UpdateAppStoreHostedAppRequest.



11402
11403
11404
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 11402

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

Instance Attribute Details

#active_apksGoogle::Apis::AndroidpublisherV3::AppStoreAppActiveApks

Information about active APKs of an app store hosted app. Corresponds to the JSON property activeApks



11380
11381
11382
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 11380

def active_apks
  @active_apks
end

#active_localized_store_listingsArray<Google::Apis::AndroidpublisherV3::AppStoreAppStoreListing>

Required. Localized store listings details of the update. Corresponds to the JSON property activeLocalizedStoreListings



11385
11386
11387
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 11385

def active_localized_store_listings
  @active_localized_store_listings
end

#app_detailsGoogle::Apis::AndroidpublisherV3::AppStoreAppDetails

Details about the app. Corresponds to the JSON property appDetails



11390
11391
11392
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 11390

def app_details
  @app_details
end

#package_nameString

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

Returns:

  • (String)


11395
11396
11397
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 11395

def package_name
  @package_name
end

#policy_declarationsArray<Google::Apis::AndroidpublisherV3::AppStoreAppPolicyDeclaration>

Required. Policy declarations provided for the app. Corresponds to the JSON property policyDeclarations



11400
11401
11402
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 11400

def policy_declarations
  @policy_declarations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11407
11408
11409
11410
11411
11412
11413
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 11407

def update!(**args)
  @active_apks = args[:active_apks] if args.key?(:active_apks)
  @active_localized_store_listings = args[:active_localized_store_listings] if args.key?(:active_localized_store_listings)
  @app_details = args[:app_details] if args.key?(:app_details)
  @package_name = args[:package_name] if args.key?(:package_name)
  @policy_declarations = args[:policy_declarations] if args.key?(:policy_declarations)
end