Class: Google::Apis::FirebasedynamiclinksV1::CreateManagedShortLinkResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::FirebasedynamiclinksV1::CreateManagedShortLinkResponse
 
- 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
- 
  
    
      #managed_short_link  ⇒ Google::Apis::FirebasedynamiclinksV1::ManagedShortLink 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Managed Short Link. 
- 
  
    
      #preview_link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Preview link to show the link flow chart. 
- 
  
    
      #warning  ⇒ Array<Google::Apis::FirebasedynamiclinksV1::DynamicLinkWarning> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Information about potential warnings on link creation. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CreateManagedShortLinkResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CreateManagedShortLinkResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CreateManagedShortLinkResponse
Returns a new instance of CreateManagedShortLinkResponse
| 153 154 155 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 153 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#managed_short_link ⇒ Google::Apis::FirebasedynamiclinksV1::ManagedShortLink
Managed Short Link.
Corresponds to the JSON property managedShortLink
| 141 142 143 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 141 def managed_short_link @managed_short_link end | 
#preview_link ⇒ String
Preview link to show the link flow chart. (debug info.)
Corresponds to the JSON property previewLink
| 146 147 148 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 146 def preview_link @preview_link end | 
#warning ⇒ Array<Google::Apis::FirebasedynamiclinksV1::DynamicLinkWarning>
Information about potential warnings on link creation.
Corresponds to the JSON property warning
| 151 152 153 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 151 def warning @warning end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 158 159 160 161 162 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 158 def update!(**args) @managed_short_link = args[:managed_short_link] if args.key?(:managed_short_link) @preview_link = args[:preview_link] if args.key?(:preview_link) @warning = args[:warning] if args.key?(:warning) end |