Show / Hide Table of Contents

Class Site

Contains properties of a site.

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

Properties

AccountId

Account ID of this site. 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>

Approved

Whether this site is approved.

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

DirectorySiteId

Directory site associated with this site. This is a required field that is read-only after insertion.

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

DirectorySiteIdDimensionValue

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

Declaration
[JsonProperty("directorySiteIdDimensionValue")]
public virtual DimensionValue DirectorySiteIdDimensionValue { 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

Id

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

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

KeyName

Key name of this site. This is a read-only, auto-generated field.

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

Kind

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

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

Name

Name of this site.This is a required field. Must be less than 128 characters long. If this site is under a subaccount, the name must be unique among sites of the same subaccount. Otherwise, this site is a top-level site, and the name must be unique among top-level sites of the same account.

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

SiteContacts

Site contacts.

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

SiteSettings

Site-wide settings.

Declaration
[JsonProperty("siteSettings")]
public virtual SiteSettings SiteSettings { get; set; }
Property Value
Type Description
SiteSettings

SubaccountId

Subaccount ID of this site. 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>

Implements

IDirectResponseSchema
Back to top