Show / Hide Table of Contents

Class CreateShortDynamicLinkRequest

Request to create a short Dynamic Link.

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

Properties

DynamicLinkInfo

Information about the Dynamic Link to be shortened. Learn more.

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

ETag

The ETag of the item.

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

LongDynamicLink

Full long Dynamic Link URL with desired query parameters specified. For example, "https://sample.app.goo.gl/?link=http://www.google.com=com.sample";, Learn more.

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

SdkVersion

Google SDK version. Version takes the form "$major.$minor.$patch"

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

Suffix

Short Dynamic Link suffix. Optional.

Declaration
[JsonProperty("suffix")]
public virtual Suffix Suffix { get; set; }
Property Value
Type Description
Suffix

Implements

IDirectResponseSchema
Back to top