diff --git a/discovery/dfareporting-v4.json b/discovery/dfareporting-v4.json index 4d280d9947..3d15676433 100644 --- a/discovery/dfareporting-v4.json +++ b/discovery/dfareporting-v4.json @@ -10067,7 +10067,7 @@ } } }, - "revision": "20230918", + "revision": "20240201", "rootUrl": "https://dfareporting.googleapis.com/", "schemas": { "Account": { @@ -12094,6 +12094,18 @@ "description": "A Conversion represents when a user successfully performs a desired action after seeing an ad.", "id": "Conversion", "properties": { + "adUserDataConsent": { + "description": "This represents consent for ad user data.", + "enum": [ + "GRANTED", + "DENIED" + ], + "enumDescriptions": [ + "Granted.", + "Denied." + ], + "type": "string" + }, "childDirectedTreatment": { "description": "Whether this particular request may come from a user under the age of 13, under COPPA compliance.", "type": "boolean" @@ -17861,6 +17873,10 @@ "format": "int64", "type": "string" }, + "conversionDomainOverride": { + "$ref": "PlacementConversionDomainOverride", + "description": "Optional. Conversion domain overrides for a placement." + }, "createInfo": { "$ref": "LastModifiedInfo", "description": "Information about the creation of this placement. This is a read-only field." @@ -18105,6 +18121,18 @@ }, "type": "object" }, + "PlacementConversionDomainOverride": { + "id": "PlacementConversionDomainOverride", + "properties": { + "conversionDomains": { + "items": { + "$ref": "PlacementSingleConversionDomain" + }, + "type": "array" + } + }, + "type": "object" + }, "PlacementGroup": { "description": "Contains properties of a package or roadblock.", "id": "PlacementGroup", @@ -18274,6 +18302,19 @@ }, "type": "object" }, + "PlacementSingleConversionDomain": { + "id": "PlacementSingleConversionDomain", + "properties": { + "conversionDomainId": { + "format": "int64", + "type": "string" + }, + "conversionDomainValue": { + "type": "string" + } + }, + "type": "object" + }, "PlacementStrategiesListResponse": { "description": "Placement Strategy List Response", "id": "PlacementStrategiesListResponse", @@ -20351,7 +20392,7 @@ "type": "string" }, "includeClickThroughUrls": { - "description": "Whether static landing page URLs should be included in the tags. This setting applies only to placements.", + "description": "Whether static landing page URLs should be included in the tags. New placements will default to the value set on their site.", "type": "boolean" }, "includeClickTracking": { @@ -20759,12 +20800,14 @@ "OTHER", "AD_ID_OFFICIAL", "CLEARCAST", - "DCM" + "DCM", + "ARPP" ], "enumDescriptions": [ "", "", "", + "", "" ], "type": "string" diff --git a/src/apis/dfareporting/v4.ts b/src/apis/dfareporting/v4.ts index 3f500d4e2a..c03eaa9e40 100644 --- a/src/apis/dfareporting/v4.ts +++ b/src/apis/dfareporting/v4.ts @@ -1739,6 +1739,10 @@ export namespace dfareporting_v4 { * A Conversion represents when a user successfully performs a desired action after seeing an ad. */ export interface Schema$Conversion { + /** + * This represents consent for ad user data. + */ + adUserDataConsent?: string | null; /** * Whether this particular request may come from a user under the age of 13, under COPPA compliance. */ @@ -4962,6 +4966,10 @@ export namespace dfareporting_v4 { * ID of the content category assigned to this placement. */ contentCategoryId?: string | null; + /** + * Optional. Conversion domain overrides for a placement. + */ + conversionDomainOverride?: Schema$PlacementConversionDomainOverride; /** * Information about the creation of this placement. This is a read-only field. */ @@ -5112,6 +5120,9 @@ export namespace dfareporting_v4 { */ sslRequired?: boolean | null; } + export interface Schema$PlacementConversionDomainOverride { + conversionDomains?: Schema$PlacementSingleConversionDomain[]; + } /** * Contains properties of a package or roadblock. */ @@ -5251,6 +5262,10 @@ export namespace dfareporting_v4 { */ placementTags?: Schema$PlacementTag[]; } + export interface Schema$PlacementSingleConversionDomain { + conversionDomainId?: string | null; + conversionDomainValue?: string | null; + } /** * Placement List Response */ @@ -6434,7 +6449,7 @@ export namespace dfareporting_v4 { */ additionalKeyValues?: string | null; /** - * Whether static landing page URLs should be included in the tags. This setting applies only to placements. + * Whether static landing page URLs should be included in the tags. New placements will default to the value set on their site. */ includeClickThroughUrls?: boolean | null; /**