Class: Google::Apis::FirebasedynamiclinksV1::GetIosReopenAttributionRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/firebasedynamiclinks_v1/classes.rb,
lib/google/apis/firebasedynamiclinks_v1/representations.rb,
lib/google/apis/firebasedynamiclinks_v1/representations.rb
more...

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GetIosReopenAttributionRequest

Returns a new instance of GetIosReopenAttributionRequest.

[View source]

698
699
700
# File 'lib/google/apis/firebasedynamiclinks_v1/classes.rb', line 698

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bundle_idString

APP bundle ID. Corresponds to the JSON property bundleId

Returns:

  • (String)

684
685
686
# File 'lib/google/apis/firebasedynamiclinks_v1/classes.rb', line 684

def bundle_id
  @bundle_id
end

FDL link to be verified from an app universal link open. The FDL link can be one of: 1) short FDL. e.g. .page.link/, or 2) long FDL. e.g. .page.link/? query params, or 3) Invite FDL. e.g. .page.link/i/ Corresponds to the JSON property requestedLink

Returns:

  • (String)

691
692
693
# File 'lib/google/apis/firebasedynamiclinks_v1/classes.rb', line 691

def requested_link
  @requested_link
end

#sdk_versionString

Google SDK version. Version takes the form "$major.$minor.$patch" Corresponds to the JSON property sdkVersion

Returns:

  • (String)

696
697
698
# File 'lib/google/apis/firebasedynamiclinks_v1/classes.rb', line 696

def sdk_version
  @sdk_version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

703
704
705
706
707
# File 'lib/google/apis/firebasedynamiclinks_v1/classes.rb', line 703

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