Class: Google::Apis::FirebasedynamiclinksV1::CreateShortDynamicLinkResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::FirebasedynamiclinksV1::CreateShortDynamicLinkResponse
 
- 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 to create a short Dynamic Link.
Instance Attribute Summary collapse
- 
  
    
      #preview_link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Preview link to show the link flow chart. 
- 
  
    
      #short_link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Short Dynamic Link value. 
- 
  
    
      #warning  ⇒ Array<Google::Apis::FirebasedynamiclinksV1::DynamicLinkWarning> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Information about potential warnings on link creation. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CreateShortDynamicLinkResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CreateShortDynamicLinkResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CreateShortDynamicLinkResponse
Returns a new instance of CreateShortDynamicLinkResponse
| 219 220 221 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 219 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#preview_link ⇒ String
Preview link to show the link flow chart. (debug info.)
Corresponds to the JSON property previewLink
| 207 208 209 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 207 def preview_link @preview_link end | 
#short_link ⇒ String
Short Dynamic Link value. e.g. https://abcd.app.goo.gl/wxyz
Corresponds to the JSON property shortLink
| 212 213 214 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 212 def short_link @short_link end | 
#warning ⇒ Array<Google::Apis::FirebasedynamiclinksV1::DynamicLinkWarning>
Information about potential warnings on link creation.
Corresponds to the JSON property warning
| 217 218 219 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 217 def warning @warning end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 224 225 226 227 228 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 224 def update!(**args) @preview_link = args[:preview_link] if args.key?(:preview_link) @short_link = args[:short_link] if args.key?(:short_link) @warning = args[:warning] if args.key?(:warning) end |