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
75 76 77 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 75 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
62 63 64 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 62 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
57 58 59 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 57 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
73 74 75 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 73 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
67 68 69 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 67 def android_package_name @android_package_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
80 81 82 83 84 85 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 80 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 |