Class: Google::Apis::FirebasedynamiclinksV1::ManagedShortLink
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::FirebasedynamiclinksV1::ManagedShortLink
 
- 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
Managed Short Link.
Instance Attribute Summary collapse
- 
  
    
      #creation_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Creation timestamp of the short link. 
- 
  
    
      #flagged_attribute  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Attributes that have been flagged about this short url. 
- 
  
    
      #info  ⇒ Google::Apis::FirebasedynamiclinksV1::DynamicLinkInfo 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Information about a Dynamic Link. 
- 
  
    
      #link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Short durable link url, for example, "https://sample.app.goo.gl/xyz123". 
- 
  
    
      #link_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Link name defined by the creator. 
- 
  
    
      #visibility  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Visibility status of link. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ManagedShortLink 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ManagedShortLink. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ManagedShortLink
Returns a new instance of ManagedShortLink
| 832 833 834 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 832 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#creation_time ⇒ String
Creation timestamp of the short link.
Corresponds to the JSON property creationTime
| 803 804 805 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 803 def creation_time @creation_time end | 
#flagged_attribute ⇒ Array<String>
Attributes that have been flagged about this short url.
Corresponds to the JSON property flaggedAttribute
| 808 809 810 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 808 def flagged_attribute @flagged_attribute end | 
#info ⇒ Google::Apis::FirebasedynamiclinksV1::DynamicLinkInfo
Information about a Dynamic Link.
Corresponds to the JSON property info
| 813 814 815 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 813 def info @info end | 
#link ⇒ String
Short durable link url, for example, "https://sample.app.goo.gl/xyz123".
Required.
Corresponds to the JSON property link
| 819 820 821 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 819 def link @link end | 
#link_name ⇒ String
Link name defined by the creator.
Required.
Corresponds to the JSON property linkName
| 825 826 827 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 825 def link_name @link_name end | 
#visibility ⇒ String
Visibility status of link.
Corresponds to the JSON property visibility
| 830 831 832 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 830 def visibility @visibility end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 837 838 839 840 841 842 843 844 | # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 837 def update!(**args) @creation_time = args[:creation_time] if args.key?(:creation_time) @flagged_attribute = args[:flagged_attribute] if args.key?(:flagged_attribute) @info = args[:info] if args.key?(:info) @link = args[:link] if args.key?(:link) @link_name = args[:link_name] if args.key?(:link_name) @visibility = args[:visibility] if args.key?(:visibility) end |