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
| 914 915 916 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 914 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#custom_suffix ⇒ String
Only applies to Option.CUSTOM.
Corresponds to the JSON property customSuffix
| 907 908 909 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 907 def custom_suffix @custom_suffix end | 
#option ⇒ String
Suffix option.
Corresponds to the JSON property option
| 912 913 914 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 912 def option @option end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 919 920 921 922 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 919 def update!(**args) @custom_suffix = args[:custom_suffix] if args.key?(:custom_suffix) @option = args[:option] if args.key?(:option) end |