Show / Hide Table of Contents

Class DirectorySite

DirectorySites contains properties of a website from the Site Directory. Sites need to be added to an account via the Sites resource before they can be assigned to a placement.

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

Properties

Active

Whether this directory site is active.

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

ETag

The ETag of the item.

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

Id

ID of this directory site. 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 directory site. This is a read-only, auto-generated field.

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

InpageTagFormats

Tag types for regular placements. Acceptable values are: - "STANDARD" - "IFRAME_JAVASCRIPT_INPAGE" - "INTERNAL_REDIRECT_INPAGE" - "JAVASCRIPT_INPAGE"

Declaration
[JsonProperty("inpageTagFormats")]
public virtual IList<string> InpageTagFormats { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

InterstitialTagFormats

Tag types for interstitial placements. Acceptable values are: - "IFRAME_JAVASCRIPT_INTERSTITIAL" - "INTERNAL_REDIRECT_INTERSTITIAL" - "JAVASCRIPT_INTERSTITIAL"

Declaration
[JsonProperty("interstitialTagFormats")]
public virtual IList<string> InterstitialTagFormats { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Kind

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

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

Name

Name of this directory site.

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

Settings

Directory site settings.

Declaration
[JsonProperty("settings")]
public virtual DirectorySiteSettings Settings { get; set; }
Property Value
Type Description
DirectorySiteSettings

Url

URL of this directory site.

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

Implements

IDirectResponseSchema
In This Article
Back to top