class Google::Apis::AdmobV1::AppLinkedAppInfo
Information from the app store if the app is linked to an app store.
Attributes
The app store ID of the app; present if and only if the app is linked to an app store. If the app is added to the Google
Play store, it will be the application ID of the app. For example: “com.example.myapp”. See https:// developer.android.com/studio/build/application-id. If the app is added to the Apple App
Store, it will be app store ID. For example “105169111”. Note that setting the app store id is considered an irreversible action. Once an app is linked, it cannot be unlinked. Corresponds to the JSON property `appStoreId` @return [String]
Output only. Display name of the app as it appears in the app store. This is an output-only field, and may be empty if the app cannot be found in the store. Corresponds to the JSON property `displayName` @return [String]
Public Class Methods
# File lib/google/apis/admob_v1/classes.rb, line 155 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/admob_v1/classes.rb, line 160 def update!(**args) @app_store_id = args[:app_store_id] if args.key?(:app_store_id) @display_name = args[:display_name] if args.key?(:display_name) end