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

ConversionCountingConfig

import type { ConversionCountingConfig } from "https://googleapis.deno.dev/v1/displayvideo:v3.ts";

Settings that control how conversions are counted. All post-click conversions will be counted. A percentage value can be set for post-view conversions counting.

interface ConversionCountingConfig {
floodlightActivityConfigs?: TrackingFloodlightActivityConfig[];
postViewCountPercentageMillis?: bigint;
}

§Properties

§
floodlightActivityConfigs?: TrackingFloodlightActivityConfig[]
[src]

The Floodlight activity configs used to track conversions. The number of conversions counted is the sum of all of the conversions counted by all of the Floodlight activity IDs specified in this field.

§
postViewCountPercentageMillis?: bigint
[src]

The percentage of post-view conversions to count, in millis (1/1000 of a percent). Must be between 0 and 100000 inclusive. For example, to track 50% of the post-click conversions, set a value of 50000.