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.



11150
11151
11152
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 11150

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



11128
11129
11130
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 11128

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



11133
11134
11135
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 11133

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



11138
11139
11140
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 11138

def app_details
  @app_details
end

#package_nameString

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

Returns:

  • (String)


11143
11144
11145
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 11143

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



11148
11149
11150
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 11148

def policy_declarations
  @policy_declarations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11155
11156
11157
11158
11159
11160
11161
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 11155

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