Show / Hide Table of Contents

Class Advertiser

Contains properties of a Campaign Manager advertiser.

Inheritance
System.Object
Advertiser
Implements
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_3.Data
Assembly: Google.Apis.Dfareporting.v3_3.dll
Syntax
public class Advertiser : IDirectResponseSchema

Properties

AccountId

Account ID of this advertiser.This is a read-only field that can be left blank.

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

AdvertiserGroupId

ID of the advertiser group this advertiser belongs to. You can group advertisers for reporting purposes, allowing you to see aggregated information for all advertisers in each group.

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

ClickThroughUrlSuffix

Suffix added to click-through URL of ad creative associations under this advertiser. Must be less than 129 characters long.

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

DefaultClickThroughEventTagId

ID of the click-through event tag to apply by default to the landing pages of this advertiser's campaigns.

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

DefaultEmail

Default email address used in sender field for tag emails.

Declaration
[JsonProperty("defaultEmail")]
public virtual string DefaultEmail { 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

FloodlightConfigurationId

Floodlight configuration ID of this advertiser. The floodlight configuration ID will be created automatically, so on insert this field should be left blank. This field can be set to another advertiser's floodlight configuration ID in order to share that advertiser's floodlight configuration with this advertiser, so long as: - This advertiser's original floodlight configuration is not already associated with floodlight activities or floodlight activity groups. - This advertiser's original floodlight configuration is not already shared with another advertiser.

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

FloodlightConfigurationIdDimensionValue

Dimension value for the ID of the floodlight configuration. This is a read-only, auto-generated field.

Declaration
[JsonProperty("floodlightConfigurationIdDimensionValue")]
public virtual DimensionValue FloodlightConfigurationIdDimensionValue { get; set; }
Property Value
Type Description
DimensionValue

Id

ID of this advertiser. This is a read-only, auto-generated field.

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

IdDimensionValue

Dimension value for the ID of this advertiser. This is a read-only, auto-generated field.

Declaration
[JsonProperty("idDimensionValue")]
public virtual DimensionValue IdDimensionValue { get; set; }
Property Value
Type Description
DimensionValue

Kind

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

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

Name

Name of this advertiser. This is a required field and must be less than 256 characters long and unique among advertisers of the same account.

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

OriginalFloodlightConfigurationId

Original floodlight configuration before any sharing occurred. Set the floodlightConfigurationId of this advertiser to originalFloodlightConfigurationId to unshare the advertiser's current floodlight configuration. You cannot unshare an advertiser's floodlight configuration if the shared configuration has activities associated with any campaign or placement.

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

Status

Status of this advertiser.

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

SubaccountId

Subaccount ID of this advertiser.This is a read-only field that can be left blank.

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

Suspended

Suspension status of this advertiser.

Declaration
[JsonProperty("suspended")]
public virtual bool? Suspended { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

IDirectResponseSchema
In This Article
Back to top