Show / Hide Table of Contents

Class ManagedShortLink

Managed Short Link.

Inheritance
System.Object
ManagedShortLink
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.FirebaseDynamicLinks.v1.Data
Assembly: Google.Apis.FirebaseDynamicLinks.v1.dll
Syntax
public class ManagedShortLink : IDirectResponseSchema

Properties

CreationTime

Creation timestamp of the short link.

Declaration
[JsonProperty("creationTime")]
public virtual object CreationTime { get; set; }
Property Value
Type Description
System.Object

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

FlaggedAttribute

Attributes that have been flagged about this short url.

Declaration
[JsonProperty("flaggedAttribute")]
public virtual IList<string> FlaggedAttribute { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Info

Full Dyamic Link info

Declaration
[JsonProperty("info")]
public virtual DynamicLinkInfo Info { get; set; }
Property Value
Type Description
DynamicLinkInfo

Link

Short durable link url, for example, "https://sample.app.goo.gl/xyz123";.

Required.

Declaration
[JsonProperty("link")]
public virtual string Link { get; set; }
Property Value
Type Description
System.String

LinkName

Link name defined by the creator.

Required.

Declaration
[JsonProperty("linkName")]
public virtual string LinkName { get; set; }
Property Value
Type Description
System.String

Visibility

Visibility status of link.

Declaration
[JsonProperty("visibility")]
public virtual string Visibility { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top