Properties
| Name | Type | Description |
|---|---|---|
| is_unlimited | boolean | |
| max_impressions | number | |
| max_views | number | |
| time_unit | string | |
| time_unit_count | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/property_AdsGroup_frequency_cap",
"title": "property_AdsGroup_frequency_cap",
"properties": {
"is_unlimited": {
"type": "boolean"
},
"max_impressions": {
"type": "number"
},
"max_views": {
"type": "number"
},
"time_unit": {
"enum": [
"UNSPECIFIED",
"LIFETIME",
"MONTHS",
"WEEKS",
"DAYS",
"HOURS",
"MINUTES"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
},
"time_unit_count": {
"type": "number"
}
},
"type": "object"
}