class Google::Apis::FirebasedynamiclinksV1::AndroidInfo
Android related attributes to the Dynamic Link.
Attributes
android_fallback_link[RW]
Link to open on Android if the app is not installed. Corresponds to the JSON property `androidFallbackLink` @return [String]
android_link[RW]
If specified, this overrides the ‘link’ parameter on Android. Corresponds to the JSON property `androidLink` @return [String]
android_min_package_version_code[RW]
Minimum version code for the Android app. If the installed app’s version code is lower, then the user is taken to the Play Store. Corresponds to the JSON property `androidMinPackageVersionCode` @return [String]
android_package_name[RW]
Android package name of the app. Corresponds to the JSON property `androidPackageName` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/firebasedynamiclinks_v1/classes.rb, line 77 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/firebasedynamiclinks_v1/classes.rb, line 82 def update!(**args) @android_fallback_link = args[:android_fallback_link] if args.key?(:android_fallback_link) @android_link = args[:android_link] if args.key?(:android_link) @android_min_package_version_code = args[:android_min_package_version_code] if args.key?(:android_min_package_version_code) @android_package_name = args[:android_package_name] if args.key?(:android_package_name) end