Show / Hide Table of Contents

Class OperatingSystem

Contains information about an operating system that can be targeted by ads.

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

Properties

DartId

DART ID of this operating system. This is the ID used for targeting.

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

Desktop

Whether this operating system is for desktop.

Declaration
[JsonProperty("desktop")]
public virtual bool? Desktop { 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

Kind

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

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

Mobile

Whether this operating system is for mobile.

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

Name

Name of this operating system.

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

Implements

IDirectResponseSchema
In This Article
Back to top