Class DataConnectProperties
Data Connect specific properties for a path under response.data.
Implements
Inherited Members
Namespace: Google.Apis.FirebaseDataConnect.v1beta.Data
Assembly: Google.Apis.FirebaseDataConnect.v1beta.dll
Syntax
public class DataConnectProperties : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
EntityId
A single Entity ID. Set if the path points to a single entity.
Declaration
[JsonProperty("entityId")]
public virtual string EntityId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
EntityIds
A list of Entity IDs. Set if the path points to an array of entities. An ID is present for each element of the array at the corresponding index.
Declaration
[JsonProperty("entityIds")]
public virtual IList<string> EntityIds { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<string> |
MaxAge
The server-suggested duration before data under path is considered stale.
Declaration
[JsonProperty("maxAge")]
public virtual object MaxAge { get; set; }
Property Value
| Type | Description |
|---|---|
| object |
Path
The path under response.data where the rest of the fields apply. Each element may be a string (field name)
or number (array index). The root of response.data is denoted by the empty list [].
Declaration
[JsonProperty("path")]
public virtual IList<object> Path { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<object> |