AI-generated Key Takeaways
-
The
OperatingSystem
resource provides information about operating systems targetable by ads, including a unique DART ID for identification and targeting. -
Operating systems are categorized as desktop or mobile and can be retrieved individually using the
get
method or as a list using thelist
method. -
Each
OperatingSystem
object contains details such as its name, DART ID, and whether it's for desktop or mobile platforms, represented in JSON format.
Resource: OperatingSystem
Contains information about an operating system that can be targeted by ads.
JSON representation |
---|
{ "dartId": string, "name": string, "desktop": boolean, "mobile": boolean, "kind": string } |
Fields | |
---|---|
dartId |
DART ID of this operating system. This is the ID used for targeting. |
name |
Name of this operating system. |
desktop |
Whether this operating system is for desktop. |
mobile |
Whether this operating system is for mobile. |
kind |
Identifies what kind of resource this is. Value: the fixed string
. |
Methods |
|
---|---|
|
Gets one operating system by DART ID. |
|
Retrieves a list of operating systems. |