Class: Google::Apis::FirebasedynamiclinksV1::NavigationInfo
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::FirebasedynamiclinksV1::NavigationInfo
 
- 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
Information of navigation behavior.
Instance Attribute Summary collapse
- 
  
    
      #enable_forced_redirect  ⇒ Boolean 
    
    
      (also: #enable_forced_redirect?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    If this option is on, FDL click will be forced to redirect rather than show an interstitial page. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ NavigationInfo 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of NavigationInfo. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ NavigationInfo
Returns a new instance of NavigationInfo
| 858 859 860 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 858 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#enable_forced_redirect ⇒ Boolean Also known as: enable_forced_redirect?
If this option is on, FDL click will be forced to redirect rather than
show an interstitial page.
Corresponds to the JSON property enableForcedRedirect
| 855 856 857 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 855 def enable_forced_redirect @enable_forced_redirect end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 863 864 865 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 863 def update!(**args) @enable_forced_redirect = args[:enable_forced_redirect] if args.key?(:enable_forced_redirect) end |