class Google::Apis::FirebasedynamiclinksV1::GetIosReopenAttributionRequest

Request for iSDK to get reopen attribution for app universal link open deeplinking. This endpoint is meant for only iOS requests.

Attributes

bundle_id[RW]

APP bundle ID. Corresponds to the JSON property `bundleId` @return [String]

sdk_version[RW]

Google SDK version. Version takes the form “$major.$minor.$patch” Corresponds to the JSON property `sdkVersion` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebasedynamiclinks_v1/classes.rb, line 691
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firebasedynamiclinks_v1/classes.rb, line 696
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