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

BudgetSummary

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

Summarized information of an individual campaign budget.

interface BudgetSummary {
externalBudgetId?: string;
preTaxAmountMicros?: bigint;
prismaCpeCode?: PrismaCpeCode;
taxAmountMicros?: bigint;
totalAmountMicros?: bigint;
}

§Properties

§
externalBudgetId?: string
[src]

Corresponds to the external_budget_id of a campaign budget. If the value is not set in the campaign budget, this field will be empty.

§
preTaxAmountMicros?: bigint
[src]

The sum of charges made under this budget before taxes, in micros of the invoice's currency. For example, if currency_code is USD, then 1000000 represents one US dollar.

§
prismaCpeCode?: PrismaCpeCode
[src]

Relevant client, product, and estimate codes from the Mediaocean Prisma tool. Only applicable for campaign budgets with an external_budget_source of EXTERNAL_BUDGET_SOURCE_MEDIA_OCEAN.

§
taxAmountMicros?: bigint
[src]

The amount of tax applied to charges under this budget, in micros of the invoice's currency. For example, if currency_code is USD, then 1000000 represents one US dollar.

§
totalAmountMicros?: bigint
[src]

The total sum of charges made under this budget, including tax, in micros of the invoice's currency. For example, if currency_code is USD, then 1000000 represents one US dollar.