class Google::Apis::FirebasedynamiclinksV1::GetIosReopenAttributionResponse
Response for iSDK to get reopen attribution for app universal link open deeplinking. This endpoint is meant for only iOS requests.
Attributes
The deep-link attributed the app universal link open. For both regular FDL links and invite FDL links. Corresponds to the JSON property `deepLink` @return [String]
Optional invitation ID, for only invite typed requested FDL links. Corresponds to the JSON property `invitationId` @return [String]
FDL input value of the “&imv=” parameter, minimum app version to be returned to Google
Firebase SDK running on iOS-9. Corresponds to the JSON property `iosMinAppVersion` @return [String]
The entire FDL, expanded from a short link. It is the same as the requested_link, if it is long. Corresponds to the JSON property `resolvedLink` @return [String]
Scion campaign value to be propagated by iSDK to Scion at app-reopen. Corresponds to the JSON property `utmCampaign` @return [String]
Scion content value to be propagated by iSDK to Scion at app-reopen. Corresponds to the JSON property `utmContent` @return [String]
Scion medium value to be propagated by iSDK to Scion at app-reopen. Corresponds to the JSON property `utmMedium` @return [String]
Scion source value to be propagated by iSDK to Scion at app-reopen. Corresponds to the JSON property `utmSource` @return [String]
Scion term value to be propagated by iSDK to Scion at app-reopen. Corresponds to the JSON property `utmTerm` @return [String]
Public Class Methods
# File lib/google/apis/firebasedynamiclinks_v1/classes.rb, line 756 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/firebasedynamiclinks_v1/classes.rb, line 761 def update!(**args) @deep_link = args[:deep_link] if args.key?(:deep_link) @invitation_id = args[:invitation_id] if args.key?(:invitation_id) @ios_min_app_version = args[:ios_min_app_version] if args.key?(:ios_min_app_version) @resolved_link = args[:resolved_link] if args.key?(:resolved_link) @utm_campaign = args[:utm_campaign] if args.key?(:utm_campaign) @utm_content = args[:utm_content] if args.key?(:utm_content) @utm_medium = args[:utm_medium] if args.key?(:utm_medium) @utm_source = args[:utm_source] if args.key?(:utm_source) @utm_term = args[:utm_term] if args.key?(:utm_term) end