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_2.Data
Assembly: Google.Apis.Dfareporting.v3_2.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>

ContactAssignments

Directory site contacts.

Declaration
[JsonProperty("contactAssignments")]
public virtual IList<DirectorySiteContactAssignment> ContactAssignments { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<DirectorySiteContactAssignment>

CountryId

Country ID of this directory site. This is a read-only field.

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

CurrencyId

Currency ID of this directory site. This is a read-only field. Possible values are: - "1" for USD - "2" for GBP - "3" for ESP - "4" for SEK - "5" for CAD - "6" for JPY - "7" for DEM - "8" for AUD - "9" for FRF - "10" for ITL - "11" for DKK - "12" for NOK - "13" for FIM - "14" for ZAR - "15" for IEP - "16" for NLG

  • "17" for EUR - "18" for KRW - "19" for TWD - "20" for SGD - "21" for CNY - "22" for HKD - "23" for NZD - "24" for MYR - "25" for BRL - "26" for PTE - "27" for MXP - "28" for CLP - "29" for TRY - "30" for ARS - "31" for PEN - "32" for ILS - "33" for CHF - "34" for VEF - "35" for COP - "36" for GTQ - "37" for PLN - "39" for INR - "40" for THB - "41" for IDR - "42" for CZK - "43" for RON - "44" for HUF - "45" for RUB - "46" for AED - "47" for BGN - "48" for HRK - "49" for MXN - "50" for NGN
Declaration
[JsonProperty("currencyId")]
public virtual long? CurrencyId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Description

Description of this directory site. This is a read-only field.

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

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

ParentId

Parent directory site ID.

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

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
Back to top