class Google::Apis::DfareportingV3_3::DeepLink
Contains information about a landing page deep link.
Attributes
The URL of the mobile app being linked to. Corresponds to the JSON property `appUrl` @return [String]
The fallback URL. This URL will be served to users who do not have the mobile app installed. Corresponds to the JSON property `fallbackUrl` @return [String]
Identifies what kind of resource this is. Value: the fixed string “ dfareporting#deepLink”. Corresponds to the JSON property `kind` @return [String]
Contains information about a mobile app. Used as a landing page deep link. Corresponds to the JSON property `mobileApp` @return [Google::Apis::DfareportingV3_3::MobileApp]
Ads served to users on these remarketing lists will use this deep link. Applicable when mobileApp.directory is APPLE_APP_STORE. Corresponds to the JSON property `remarketingListIds` @return [Array<Fixnum>]
Public Class Methods
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 4707 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 4712 def update!(**args) @app_url = args[:app_url] if args.key?(:app_url) @fallback_url = args[:fallback_url] if args.key?(:fallback_url) @kind = args[:kind] if args.key?(:kind) @mobile_app = args[:mobile_app] if args.key?(:mobile_app) @remarketing_list_ids = args[:remarketing_list_ids] if args.key?(:remarketing_list_ids) end