Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions admob/v1beta/admob-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@
}
}
},
"revision": "20240514",
"revision": "20250811",
"rootUrl": "https://admob.googleapis.com/",
"schemas": {
"AdSource": {
Expand Down Expand Up @@ -1697,7 +1697,7 @@
"type": "string"
},
"platform": {
"description": "Describes the platform of the app. Examples: \"IOS\", \"Android\".",
"description": "Describes the platform of the app. Examples: \"IOS\", \"ANDROID\".",
"type": "string"
},
"targetedRegionCodes": {
Expand Down
2 changes: 1 addition & 1 deletion admob/v1beta/admob-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

49 changes: 48 additions & 1 deletion cloudchannel/v1/cloudchannel-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -2289,7 +2289,7 @@
}
}
},
"revision": "20250614",
"revision": "20250809",
"rootUrl": "https://cloudchannel.googleapis.com/",
"schemas": {
"GoogleCloudChannelV1ActivateEntitlementRequest": {
Expand Down Expand Up @@ -3035,6 +3035,42 @@
},
"type": "object"
},
"GoogleCloudChannelV1DiscountComponent": {
"description": "Represents a single component of the total discount applicable on a Price.",
"id": "GoogleCloudChannelV1DiscountComponent",
"properties": {
"discountAbsolute": {
"$ref": "GoogleTypeMoney",
"description": "Fixed value discount."
},
"discountPercentage": {
"description": "Discount percentage, represented as decimal. For example, a 20% discount will be represented as 0.2.",
"format": "double",
"type": "number"
},
"discountType": {
"description": "Type of the discount.",
"enum": [
"DISCOUNT_TYPE_UNSPECIFIED",
"REGIONAL_DISCOUNT",
"PROMOTIONAL_DISCOUNT",
"SALES_DISCOUNT",
"RESELLER_MARGIN",
"DEAL_CODE"
],
"enumDescriptions": [
"Not used.",
"Regional discount.",
"Promotional discount.",
"Sales-provided discount.",
"Reseller margin.",
"Deal code discount."
],
"type": "string"
}
},
"type": "object"
},
"GoogleCloudChannelV1EduData": {
"description": "Required Edu Attributes",
"id": "GoogleCloudChannelV1EduData",
Expand Down Expand Up @@ -4157,13 +4193,24 @@
"format": "double",
"type": "number"
},
"discountComponents": {
"description": "Breakdown of the discount into its components. This will be empty if there is no discount present.",
"items": {
"$ref": "GoogleCloudChannelV1DiscountComponent"
},
"type": "array"
},
"effectivePrice": {
"$ref": "GoogleTypeMoney",
"description": "Effective Price after applying the discounts."
},
"externalPriceUri": {
"description": "Link to external price list, such as link to Google Voice rate card.",
"type": "string"
},
"pricePeriod": {
"$ref": "GoogleCloudChannelV1Period",
"description": "The time period with respect to which base and effective prices are defined. Example: 1 month, 6 months, 1 year, etc."
}
},
"type": "object"
Expand Down
56 changes: 56 additions & 0 deletions cloudchannel/v1/cloudchannel-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading