Show / Hide Table of Contents

Class BudgetSummary

Summarized information of an individual campaign budget.

Inheritance
System.Object
BudgetSummary
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.DisplayVideo.v1.Data
Assembly: Google.Apis.DisplayVideo.v1.dll
Syntax
public class BudgetSummary : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

ExternalBudgetId

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.

Declaration
[JsonProperty("externalBudgetId")]
public virtual string ExternalBudgetId { get; set; }
Property Value
Type Description
System.String

PreTaxAmountMicros

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.

Declaration
[JsonProperty("preTaxAmountMicros")]
public virtual long? PreTaxAmountMicros { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

PrismaCpeCode

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.

Declaration
[JsonProperty("prismaCpeCode")]
public virtual PrismaCpeCode PrismaCpeCode { get; set; }
Property Value
Type Description
PrismaCpeCode

TaxAmountMicros

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.

Declaration
[JsonProperty("taxAmountMicros")]
public virtual long? TaxAmountMicros { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

TotalAmountMicros

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.

Declaration
[JsonProperty("totalAmountMicros")]
public virtual long? TotalAmountMicros { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top