Class: Google::Apis::FirebasedynamiclinksV1::AndroidInfo
- Inherits:
-
Object
- Object
- Google::Apis::FirebasedynamiclinksV1::AndroidInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/firebasedynamiclinks_v1/classes.rb,
generated/google/apis/firebasedynamiclinks_v1/representations.rb,
generated/google/apis/firebasedynamiclinks_v1/representations.rb
Overview
Android related attributes to the Dynamic Link.
Instance Attribute Summary collapse
-
#android_fallback_link ⇒ String
Link to open on Android if the app is not installed.
-
#android_link ⇒ String
If specified, this overrides the ‘link’ parameter on Android.
-
#android_min_package_version_code ⇒ String
Minimum version code for the Android app.
-
#android_package_name ⇒ String
Android package name of the app.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AndroidInfo
constructor
A new instance of AndroidInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AndroidInfo
Returns a new instance of AndroidInfo
292 293 294 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 292 def initialize(**args) update!(**args) end |
Instance Attribute Details
#android_fallback_link ⇒ String
Link to open on Android if the app is not installed.
Corresponds to the JSON property androidFallbackLink
279 280 281 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 279 def android_fallback_link @android_fallback_link end |
#android_link ⇒ String
If specified, this overrides the ‘link’ parameter on Android.
Corresponds to the JSON property androidLink
274 275 276 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 274 def android_link @android_link end |
#android_min_package_version_code ⇒ String
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
290 291 292 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 290 def android_min_package_version_code @android_min_package_version_code end |
#android_package_name ⇒ String
Android package name of the app.
Corresponds to the JSON property androidPackageName
284 285 286 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 284 def android_package_name @android_package_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
297 298 299 300 301 302 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 297 def update!(**args) @android_link = args[:android_link] if args.key?(:android_link) @android_fallback_link = args[:android_fallback_link] if args.key?(:android_fallback_link) @android_package_name = args[:android_package_name] if args.key?(:android_package_name) @android_min_package_version_code = args[:android_min_package_version_code] if args.key?(:android_min_package_version_code) end |