Class: Google::Apis::FirebasedynamiclinksV1::GetIosReopenAttributionRequest
- Inherits:
-
Object
- Object
- Google::Apis::FirebasedynamiclinksV1::GetIosReopenAttributionRequest
- 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
Request for iSDK to get reopen attribution for app universal link open deeplinking. This endpoint is meant for only iOS requests.
Instance Attribute Summary collapse
-
#bundle_id ⇒ String
APP bundle ID.
-
#requested_link ⇒ String
FDL link to be verified from an app universal link open.
-
#sdk_version ⇒ String
Google SDK version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GetIosReopenAttributionRequest
constructor
A new instance of GetIosReopenAttributionRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GetIosReopenAttributionRequest
Returns a new instance of GetIosReopenAttributionRequest
695 696 697 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 695 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bundle_id ⇒ String
APP bundle ID.
Corresponds to the JSON property bundleId
676 677 678 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 676 def bundle_id @bundle_id end |
#requested_link ⇒ String
FDL link to be verified from an app universal link open.
The FDL link can be one of:
1) short FDL.
e.g. query params
, or
3) Invite FDL.
e.g. requestedLink
688 689 690 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 688 def requested_link @requested_link end |
#sdk_version ⇒ String
Google SDK version. Version takes the form "$major.$minor.$patch"
Corresponds to the JSON property sdkVersion
693 694 695 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 693 def sdk_version @sdk_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
700 701 702 703 704 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 700 def update!(**args) @bundle_id = args[:bundle_id] if args.key?(:bundle_id) @requested_link = args[:requested_link] if args.key?(:requested_link) @sdk_version = args[:sdk_version] if args.key?(:sdk_version) end |