Class DeepLinkData
Deep-linking data is used to construct a deep-link URI for an activity or frame's embed, such that on click, the user is taken to the right place in a mobile app. If the app is not installed, the user is taken to the app store. If not on mobile, an analogous web uri is used.
Inheritance
Implements
Inherited Members
Namespace: Google.Apis.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class DeepLinkData : IDirectResponseSchema
Properties
AppId
Application ID (or project ID) from Google API Console.
Declaration
[JsonProperty("appId")]
public virtual long? AppId { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int64> |
Client
The data for a Google API Console client is entered by a developer during client registration and is stored in PackagingService.
Declaration
[JsonProperty("client")]
public virtual IList<PackagingServiceClient> Client { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IList<PackagingServiceClient> |
DeepLinkId
The ID for non-URL content. Embeds may either have no analogous web presence or prefer a native mobile experience if supported. In the case of no web presence, instead of setting the "url" field of an embed, such developers will set this field and other content fields, e.g. thumbnail, title, description. If set, this field is used to construct the deep-link URI. Note that the native experience is preferred over the web link and the web link is used as a fallback.
Declaration
[JsonProperty("deepLinkId")]
public virtual string DeepLinkId { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Url
Analogous web presence. Used as desktop fallback or when no native link data is present.
Declaration
[JsonProperty("url")]
public virtual string Url { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |