Class: Google::Apis::FirebasedynamiclinksV1::GetIosReopenAttributionRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::FirebasedynamiclinksV1::GetIosReopenAttributionRequest
 
 
- 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
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
- 
  
    
      #bundle_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
APP bundle ID.
 - 
  
    
      #requested_link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
FDL link to be verified from an app universal link open.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GetIosReopenAttributionRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GetIosReopenAttributionRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GetIosReopenAttributionRequest
Returns a new instance of GetIosReopenAttributionRequest
      677 678 679  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 677 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#bundle_id ⇒ String
APP bundle ID.
Corresponds to the JSON property bundleId
      663 664 665  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 663 def bundle_id @bundle_id end  | 
  
#requested_link ⇒ String
FDL link to be verified from an app universal link open.
The FDL link can be one of:
1) short FDL.
e.g. query params, or
3) Invite FDL.
e.g. requestedLink
      675 676 677  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 675 def requested_link @requested_link end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      682 683 684 685  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 682 def update!(**args) @bundle_id = args[:bundle_id] if args.key?(:bundle_id) @requested_link = args[:requested_link] if args.key?(:requested_link) end  |