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

GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue

import type { GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue } from "https://googleapis.deno.dev/v1/analyticsadmin:v1beta.ts";

Defines a default value/currency for a conversion event. Both value and currency must be provided.

interface GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue {
currencyCode?: string;
value?: number;
}

§Properties

§
currencyCode?: string
[src]

When a conversion event for this event_name has no set currency, this currency will be applied as the default. Must be in ISO 4217 currency code format. See https://en.wikipedia.org/wiki/ISO_4217 for more information.

§
value?: number
[src]

This value will be used to populate the value for all conversions of the specified event_name where the event "value" parameter is unset.