Show / Hide Table of Contents

Class IngestAudienceMembersRequest

Request to upload audience members to the provided destinations. Returns an IngestAudienceMembersResponse.

Inheritance
object
IngestAudienceMembersRequest
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.DataManager.v1.Data
Assembly: Google.Apis.DataManager.v1.dll
Syntax
public class IngestAudienceMembersRequest : IDirectResponseSchema

Properties

AudienceMembers

Required. The list of users to send to the specified destinations. At most 10000 AudienceMember resources can be sent in a single request.

Declaration
[JsonProperty("audienceMembers")]
public virtual IList<AudienceMember> AudienceMembers { get; set; }
Property Value
Type Description
IList<AudienceMember>

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 AudienceMember.

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

Destinations

Required. The list of destinations to send the audience members 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

TermsOfService

Optional. The terms of service that the user has accepted/rejected.

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

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?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX