Class: Google::Apis::FirebasedynamiclinksV1::GetIosReopenAttributionResponse

Inherits:
Object
  • Object
show all
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

Response 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) ⇒ GetIosReopenAttributionResponse

Returns a new instance of GetIosReopenAttributionResponse.



756
757
758
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 756

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

Instance Attribute Details

The deep-link attributed the app universal link open. For both regular FDL links and invite FDL links. Corresponds to the JSON property deepLink

Returns:

  • (String)


712
713
714
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 712

def deep_link
  @deep_link
end

#invitation_idString

Optional invitation ID, for only invite typed requested FDL links. Corresponds to the JSON property invitationId

Returns:

  • (String)


717
718
719
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 717

def invitation_id
  @invitation_id
end

#ios_min_app_versionString

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

Returns:

  • (String)


723
724
725
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 723

def ios_min_app_version
  @ios_min_app_version
end

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

Returns:

  • (String)


729
730
731
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 729

def resolved_link
  @resolved_link
end

#utm_campaignString

Scion campaign value to be propagated by iSDK to Scion at app-reopen. Corresponds to the JSON property utmCampaign

Returns:

  • (String)


734
735
736
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 734

def utm_campaign
  @utm_campaign
end

#utm_contentString

Scion content value to be propagated by iSDK to Scion at app-reopen. Corresponds to the JSON property utmContent

Returns:

  • (String)


739
740
741
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 739

def utm_content
  @utm_content
end

#utm_mediumString

Scion medium value to be propagated by iSDK to Scion at app-reopen. Corresponds to the JSON property utmMedium

Returns:

  • (String)


744
745
746
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 744

def utm_medium
  @utm_medium
end

#utm_sourceString

Scion source value to be propagated by iSDK to Scion at app-reopen. Corresponds to the JSON property utmSource

Returns:

  • (String)


749
750
751
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 749

def utm_source
  @utm_source
end

#utm_termString

Scion term value to be propagated by iSDK to Scion at app-reopen. Corresponds to the JSON property utmTerm

Returns:

  • (String)


754
755
756
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 754

def utm_term
  @utm_term
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



761
762
763
764
765
766
767
768
769
770
771
# File 'generated/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