Class IngestEventsRequest
Request to upload audience members to the provided destinations. Returns an IngestEventsResponse.
Implements
Inherited Members
Namespace: Google.Apis.DataManager.v1.Data
Assembly: Google.Apis.DataManager.v1.dll
Syntax
public class IngestEventsRequest : IDirectResponseSchema
Properties
Consent
Optional. Request-level consent to apply to all users in the request. User-level consent overrides request-level consent, and can be specified in each Event.
Declaration
[JsonProperty("consent")]
public virtual Consent Consent { get; set; }
Property Value
| Type | Description |
|---|---|
| Consent |
Destinations
Required. The list of destinations to send the events to.
Declaration
[JsonProperty("destinations")]
public virtual IList<Destination> Destinations { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<Destination> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Encoding
Optional. Required for UserData uploads. The encoding type of the user identifiers. For hashed user
identifiers, this is the encoding type of the hashed string. For encrypted hashed user identifiers, this is
the encoding type of the outer encrypted string, but not necessarily the inner hashed string, meaning the
inner hashed string could be encoded in a different way than the outer encrypted string. For non UserData
uploads, this field is ignored.
Declaration
[JsonProperty("encoding")]
public virtual string Encoding { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
EncryptionInfo
Optional. Encryption information for UserData uploads. If not set, it's assumed that uploaded identifying
information is hashed but not encrypted. For non UserData uploads, this field is ignored.
Declaration
[JsonProperty("encryptionInfo")]
public virtual EncryptionInfo EncryptionInfo { get; set; }
Property Value
| Type | Description |
|---|---|
| EncryptionInfo |
Events
Required. The list of events to send to the specified destinations. At most 2000 Event resources can be sent in a single request.
Declaration
[JsonProperty("events")]
public virtual IList<Event> Events { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<Event> |
ValidateOnly
Optional. For testing purposes. If true, the request is validated but not executed. Only errors are
returned, not results.
Declaration
[JsonProperty("validateOnly")]
public virtual bool? ValidateOnly { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |