Show / Hide Table of Contents

Class AccountActiveAdSummary

Gets a summary of active ads in an account.

Inheritance
System.Object
AccountActiveAdSummary
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.Dfareporting.v3_4.Data
Assembly: Google.Apis.Dfareporting.v3_4.dll
Syntax
public class AccountActiveAdSummary : IDirectResponseSchema

Properties

AccountId

ID of the account.

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

ActiveAds

Ads that have been activated for the account

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

ActiveAdsLimitTier

Maximum number of active ads allowed for the account.

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

AvailableAds

Ads that can be activated for the account.

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

ETag

The ETag of the item.

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

Kind

Identifies what kind of resource this is. Value: the fixed string "dfareporting#accountActiveAdSummary".

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