Class: Google::Apis::FirebasedynamiclinksV1::Suffix
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::FirebasedynamiclinksV1::Suffix
 
 
- 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
Short Dynamic Link suffix.
Instance Attribute Summary collapse
- 
  
    
      #custom_suffix  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Only applies to Option.CUSTOM.
 - 
  
    
      #option  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Suffix option.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Suffix 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Suffix.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Suffix
Returns a new instance of Suffix
      1005 1006 1007  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 1005 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#custom_suffix ⇒ String
Only applies to Option.CUSTOM.
Corresponds to the JSON property customSuffix
      998 999 1000  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 998 def custom_suffix @custom_suffix end  | 
  
#option ⇒ String
Suffix option.
Corresponds to the JSON property option
      1003 1004 1005  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 1003 def option @option end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1010 1011 1012 1013  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 1010 def update!(**args) @custom_suffix = args[:custom_suffix] if args.key?(:custom_suffix) @option = args[:option] if args.key?(:option) end  |