Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7c6b2cc

Browse files
committedMar 4, 2025
feat(adsense): update the api
#### adsense:v2 The following keys were added: - schemas.PolicyTopic.properties.mustFix.deprecated (Total Keys: 1) - schemas.PolicyTopic.properties.type.type (Total Keys: 1)
1 parent 149f87d commit 7c6b2cc

File tree

2 files changed

+23
-4
lines changed

2 files changed

+23
-4
lines changed
 

‎docs/dyn/adsense_v2.accounts.policyIssues.html

+4-2
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,9 @@ <h3>Method Details</h3>
126126
&quot;name&quot;: &quot;A String&quot;, # Required. Resource name of the entity with policy issues. Format: accounts/{account}/policyIssues/{policy_issue}
127127
&quot;policyTopics&quot;: [ # Required. Unordered list. The policy topics that this entity was found to violate over the past seven days.
128128
{ # Information about a particular policy topic. A policy topic represents a single class of policy issue that can impact ad serving for your site. For example, sexual content or having ads that obscure your content. A single policy issue can have multiple policy topics for a single entity.
129-
&quot;mustFix&quot;: True or False, # Required. Indicates if this is a policy violation or not. When the value is true, issues that are instances of this topic must be addressed to remain in compliance with the partner&#x27;s agreements with Google. A false value indicates that it&#x27;s not mandatory to fix the issues but advertising demand might be restricted.
129+
&quot;mustFix&quot;: True or False, # Required. Deprecated. Policy topics no longer have a &quot;must-fix&quot; classification.
130130
&quot;topic&quot;: &quot;A String&quot;, # Required. The policy topic. For example, &quot;sexual-content&quot; or &quot;ads-obscuring-content&quot;.&quot;
131+
&quot;type&quot;: &quot;A String&quot;, # Optional. The type of policy topic. For example, &quot;POLICY&quot; represents all the policy topics that are related to the Google Publisher Policy (GPP). See https://support.google.com/adsense/answer/15689616.
131132
},
132133
],
133134
&quot;site&quot;: &quot;A String&quot;, # Required. Hostname/domain of the entity (for example &quot;foo.com&quot; or &quot;www.foo.com&quot;). This _should_ be a bare domain/host name without any protocol. This will be present for all policy issues.
@@ -180,8 +181,9 @@ <h3>Method Details</h3>
180181
&quot;name&quot;: &quot;A String&quot;, # Required. Resource name of the entity with policy issues. Format: accounts/{account}/policyIssues/{policy_issue}
181182
&quot;policyTopics&quot;: [ # Required. Unordered list. The policy topics that this entity was found to violate over the past seven days.
182183
{ # Information about a particular policy topic. A policy topic represents a single class of policy issue that can impact ad serving for your site. For example, sexual content or having ads that obscure your content. A single policy issue can have multiple policy topics for a single entity.
183-
&quot;mustFix&quot;: True or False, # Required. Indicates if this is a policy violation or not. When the value is true, issues that are instances of this topic must be addressed to remain in compliance with the partner&#x27;s agreements with Google. A false value indicates that it&#x27;s not mandatory to fix the issues but advertising demand might be restricted.
184+
&quot;mustFix&quot;: True or False, # Required. Deprecated. Policy topics no longer have a &quot;must-fix&quot; classification.
184185
&quot;topic&quot;: &quot;A String&quot;, # Required. The policy topic. For example, &quot;sexual-content&quot; or &quot;ads-obscuring-content&quot;.&quot;
186+
&quot;type&quot;: &quot;A String&quot;, # Optional. The type of policy topic. For example, &quot;POLICY&quot; represents all the policy topics that are related to the Google Publisher Policy (GPP). See https://support.google.com/adsense/answer/15689616.
185187
},
186188
],
187189
&quot;site&quot;: &quot;A String&quot;, # Required. Hostname/domain of the entity (for example &quot;foo.com&quot; or &quot;www.foo.com&quot;). This _should_ be a bare domain/host name without any protocol. This will be present for all policy issues.

‎googleapiclient/discovery_cache/documents/adsense.v2.json

+19-2
Original file line numberDiff line numberDiff line change
@@ -2018,7 +2018,7 @@ false
20182018
}
20192019
}
20202020
},
2021-
"revision": "20250220",
2021+
"revision": "20250224",
20222022
"rootUrl": "https://adsense.googleapis.com/",
20232023
"schemas": {
20242024
"Account": {
@@ -2754,12 +2754,29 @@ true
27542754
"id": "PolicyTopic",
27552755
"properties": {
27562756
"mustFix": {
2757-
"description": "Required. Indicates if this is a policy violation or not. When the value is true, issues that are instances of this topic must be addressed to remain in compliance with the partner's agreements with Google. A false value indicates that it's not mandatory to fix the issues but advertising demand might be restricted.",
2757+
"deprecated": true,
2758+
"description": "Required. Deprecated. Policy topics no longer have a \"must-fix\" classification.",
27582759
"type": "boolean"
27592760
},
27602761
"topic": {
27612762
"description": "Required. The policy topic. For example, \"sexual-content\" or \"ads-obscuring-content\".\"",
27622763
"type": "string"
2764+
},
2765+
"type": {
2766+
"description": "Optional. The type of policy topic. For example, \"POLICY\" represents all the policy topics that are related to the Google Publisher Policy (GPP). See https://support.google.com/adsense/answer/15689616.",
2767+
"enum": [
2768+
"POLICY_TOPIC_TYPE_UNSPECIFIED",
2769+
"POLICY",
2770+
"ADVERTISER_PREFERENCE",
2771+
"REGULATORY"
2772+
],
2773+
"enumDescriptions": [
2774+
"The type is unspecified.",
2775+
"Topics that are primarily related to the Google Publisher Policy (GPP) https://support.google.com/publisherpolicies/answer/10502938 or the Google Publisher Restrictions (GPR) policies https://support.google.com/publisherpolicies/answer/10437795.",
2776+
"Topics that are related to advertiser preferences. Certain advertisers may choose not to bid on content that are labeled with certain policies.",
2777+
"Any topics that are a result of a country or regional regulatory requirement body."
2778+
],
2779+
"type": "string"
27632780
}
27642781
},
27652782
"type": "object"

0 commit comments

Comments
 (0)
Please sign in to comment.