class Google::Apis::DfareportingV3_5::DeepLink

Contains information about a landing page deep link.

Attributes

app_url[RW]

The URL of the mobile app being linked to. Corresponds to the JSON property `appUrl` @return [String]

fallback_url[RW]

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]

kind[RW]

Identifies what kind of resource this is. Value: the fixed string “ dfareporting#deepLink”. Corresponds to the JSON property `kind` @return [String]

mobile_app[RW]

Contains information about a mobile app. Used as a landing page deep link. Corresponds to the JSON property `mobileApp` @return [Google::Apis::DfareportingV3_5::MobileApp]

remarketing_list_ids[RW]

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

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 4823
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dfareporting_v3_5/classes.rb, line 4828
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