Skip to content

Commit

Permalink
feat(androidpublisher): update the api
Browse files Browse the repository at this point in the history
#### androidpublisher:v3

The following keys were added:
- schemas.RegionalPriceMigrationConfig.properties.priceIncreaseType.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Jul 18, 2023
1 parent bcd1396 commit bf5f03e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
Expand Up @@ -322,6 +322,7 @@ <h3>Method Details</h3>
&quot;regionalPriceMigrations&quot;: [ # Required. The regional prices to update.
{ # Configuration for a price migration.
&quot;oldestAllowedPriceVersionTime&quot;: &quot;A String&quot;, # Required. The cutoff time for historical prices that subscribers can remain paying. Subscribers who are on a price that was created before this cutoff time will be migrated to the currently-offered price. These subscribers will receive a notification that they will be paying a different price. Subscribers who do not agree to the new price will have their subscription ended at the next renewal.
&quot;priceIncreaseType&quot;: &quot;A String&quot;, # Optional. The behavior the caller wants users to see if there is a price increase during migration. If left unset, the behavior defaults to PRICE_INCREASE_TYPE_OPT_IN.
&quot;regionCode&quot;: &quot;A String&quot;, # Required. Region code this configuration applies to, as defined by ISO 3166-2, e.g. &quot;US&quot;.
},
],
Expand Down
Expand Up @@ -4047,7 +4047,7 @@
}
}
},
"revision": "20230711",
"revision": "20230718",
"rootUrl": "https://androidpublisher.googleapis.com/",
"schemas": {
"Abi": {
Expand Down Expand Up @@ -6390,6 +6390,20 @@
"format": "google-datetime",
"type": "string"
},
"priceIncreaseType": {
"description": "Optional. The behavior the caller wants users to see if there is a price increase during migration. If left unset, the behavior defaults to PRICE_INCREASE_TYPE_OPT_IN.",
"enum": [
"PRICE_INCREASE_TYPE_UNSPECIFIED",
"PRICE_INCREASE_TYPE_OPT_IN",
"PRICE_INCREASE_TYPE_OPT_OUT"
],
"enumDescriptions": [
"Unspecified state.",
"Price increase will be presented to users on an opt-in basis.",
"Price increase will be presented to users on an opt-out basis."
],
"type": "string"
},
"regionCode": {
"description": "Required. Region code this configuration applies to, as defined by ISO 3166-2, e.g. \"US\".",
"type": "string"
Expand Down

0 comments on commit bf5f03e

Please sign in to comment.