Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RemoveAudienceMembersRequest

import type { RemoveAudienceMembersRequest } from "https://googleapis.deno.dev/v1/datamanager:v1.ts";

Request to remove users from an audience in the provided destinations. Returns a RemoveAudienceMembersResponse.

interface RemoveAudienceMembersRequest {
audienceMembers?: AudienceMember[];
destinations?: Destination[];
encoding?: "ENCODING_UNSPECIFIED" | "HEX" | "BASE64";
encryptionInfo?: EncryptionInfo;
validateOnly?: boolean;
}

§Properties

§
audienceMembers?: AudienceMember[]
[src]

Required. The list of users to remove.

§
destinations?: Destination[]
[src]

Required. The list of destinations to remove the users from.

§
encoding?: "ENCODING_UNSPECIFIED" | "HEX" | "BASE64"
[src]

Optional. Required for UserData uploads. The encoding type of the user identifiers. Applies to only the outer encoding for encrypted user identifiers. For non UserData uploads, this field is ignored.

§
encryptionInfo?: EncryptionInfo
[src]

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.

§
validateOnly?: boolean
[src]

Optional. For testing purposes. If true, the request is validated but not executed. Only errors are returned, not results.