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

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.



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

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

Instance Attribute Details

#bundle_idString

APP bundle ID. Corresponds to the JSON property bundleId

Returns:

  • (String)


678
679
680
# File 'lib/google/apis/firebasedynamiclinks_v1/classes.rb', line 678

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)


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

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)


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

def sdk_version
  @sdk_version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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