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.



10414
10415
10416
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 10414

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



10392
10393
10394
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 10392

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



10397
10398
10399
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 10397

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



10402
10403
10404
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 10402

def app_details
  @app_details
end

#package_nameString

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

Returns:

  • (String)


10407
10408
10409
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 10407

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



10412
10413
10414
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 10412

def policy_declarations
  @policy_declarations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10419
10420
10421
10422
10423
10424
10425
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 10419

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