Show / Hide Table of Contents

Class Budget

The configuration data for Ad Exchange RTB - Budget API.

Inheritance
System.Object
Budget
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.AdExchangeBuyer.v1_4.Data
Assembly: Google.Apis.AdExchangeBuyer.v1_4.dll
Syntax
public class Budget : IDirectResponseSchema

Properties

AccountId

The id of the account. This is required for get and update requests.

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

BillingId

The billing id to determine which adgroup to provide budget information for. This is required for get and update requests.

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

BudgetAmount

The daily budget amount in unit amount of the account currency to apply for the billingId provided. This is required for update requests.

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

CurrencyCode

The currency code for the buyer. This cannot be altered here.

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

ETag

The ETag of the item.

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

Id

The unique id that describes this item.

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

Kind

The kind of the resource, i.e. "adexchangebuyer#budget".

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

Implements

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