Show / Hide Table of Contents

Class CreateShortDynamicLinkResponse

Response to create a short Dynamic Link.

Inheritance
System.Object
CreateShortDynamicLinkResponse
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 CreateShortDynamicLinkResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

PreviewLink

Preview link to show the link flow chart. (debug info.)

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

ShortLink

Short Dynamic Link value. e.g. https://abcd.app.goo.gl/wxyz

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

Warning

Information about potential warnings on link creation.

Declaration
[JsonProperty("warning")]
public virtual IList<DynamicLinkWarning> Warning { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<DynamicLinkWarning>

Implements

IDirectResponseSchema
Back to top