Show / Hide Table of Contents

Class FloodlightActivityGroup

Contains properties of a Floodlight activity group.

Inheritance
System.Object
FloodlightActivityGroup
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 FloodlightActivityGroup : IDirectResponseSchema

Properties

AccountId

Account ID of this floodlight activity group. 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>

AdvertiserId

Advertiser ID of this floodlight activity group. If this field is left blank, the value will be copied over either from the floodlight configuration's advertiser or from the existing activity group's advertiser.

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

AdvertiserIdDimensionValue

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

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

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 floodlight activity group. This is a required field.

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 floodlight activity group. 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 floodlight activity group. 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#floodlightActivityGroup".

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

Name

Name of this floodlight activity group. This is a required field. Must be less than 65 characters long and cannot contain quotes.

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

SubaccountId

Subaccount ID of this floodlight activity group. 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>

TagString

Value of the type= parameter in the floodlight tag, which the ad servers use to identify the activity group that the activity belongs to. This is optional: if empty, a new tag string will be generated for you. This string must be 1 to 8 characters long, with valid characters being a-z0-9[ _ ]. This tag string must also be unique among activity groups of the same floodlight configuration. This field is read-only after insertion.

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

Type

Type of the floodlight activity group. This is a required field that is read-only after insertion.

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

Implements

IDirectResponseSchema
In This Article
Back to top