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

IngestUserDataStatus

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

The status of the user data ingestion to the destination containing stats related to the ingestion.

interface IngestUserDataStatus {
recordCount?: bigint;
uploadMatchRateRange?:
| "MATCH_RATE_RANGE_UNKNOWN"
| "MATCH_RATE_RANGE_NOT_ELIGIBLE"
| "MATCH_RATE_RANGE_LESS_THAN_20"
| "MATCH_RATE_RANGE_20_TO_30"
| "MATCH_RATE_RANGE_31_TO_40"
| "MATCH_RATE_RANGE_41_TO_50"
| "MATCH_RATE_RANGE_51_TO_60"
| "MATCH_RATE_RANGE_61_TO_70"
| "MATCH_RATE_RANGE_71_TO_80"
| "MATCH_RATE_RANGE_81_TO_90"
| "MATCH_RATE_RANGE_91_TO_100";
userIdentifierCount?: bigint;
}

§Properties

§
recordCount?: bigint
[src]

The total count of audience members sent in the upload request for the destination. Includes all audience members in the request, regardless of whether they were successfully ingested or not.

§
uploadMatchRateRange?: "MATCH_RATE_RANGE_UNKNOWN" | "MATCH_RATE_RANGE_NOT_ELIGIBLE" | "MATCH_RATE_RANGE_LESS_THAN_20" | "MATCH_RATE_RANGE_20_TO_30" | "MATCH_RATE_RANGE_31_TO_40" | "MATCH_RATE_RANGE_41_TO_50" | "MATCH_RATE_RANGE_51_TO_60" | "MATCH_RATE_RANGE_61_TO_70" | "MATCH_RATE_RANGE_71_TO_80" | "MATCH_RATE_RANGE_81_TO_90" | "MATCH_RATE_RANGE_91_TO_100"
[src]

The match rate range of the upload.

§
userIdentifierCount?: bigint
[src]

The total count of user identifiers sent in the upload request for the destination. Includes all user identifiers in the request, regardless of whether they were successfully ingested or not.