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.AutoRenewingBasePlanType.properties.accountHoldDuration.description
- schemas.AutoRenewingBasePlanType.properties.accountHoldDuration.type
  • Loading branch information
yoshi-automation authored and sofisl committed Feb 8, 2024
1 parent fbebd87 commit e4b9a48
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion discovery/androidpublisher-v3.json
Original file line number Diff line number Diff line change
Expand Up @@ -4724,7 +4724,7 @@
}
}
},
"revision": "20240131",
"revision": "20240207",
"rootUrl": "https://androidpublisher.googleapis.com/",
"schemas": {
"Abi": {
Expand Down Expand Up @@ -5235,6 +5235,10 @@
"description": "Represents a base plan that automatically renews at the end of its subscription period.",
"id": "AutoRenewingBasePlanType",
"properties": {
"accountHoldDuration": {
"description": "Optional. Account hold period of the subscription, specified in ISO 8601 format. Acceptable values must be in DAYS and in the range P0D (zero days) to P30D (30 days). If not specified, the default value is P30D (30 days).",
"type": "string"
},
"billingPeriodDuration": {
"description": "Required. Subscription period, specified in ISO 8601 format. For a list of acceptable billing periods, refer to the help center.",
"type": "string"
Expand Down
4 changes: 4 additions & 0 deletions src/apis/androidpublisher/v3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,10 @@ export namespace androidpublisher_v3 {
* Represents a base plan that automatically renews at the end of its subscription period.
*/
export interface Schema$AutoRenewingBasePlanType {
/**
* Optional. Account hold period of the subscription, specified in ISO 8601 format. Acceptable values must be in DAYS and in the range P0D (zero days) to P30D (30 days). If not specified, the default value is P30D (30 days).
*/
accountHoldDuration?: string | null;
/**
* Required. Subscription period, specified in ISO 8601 format. For a list of acceptable billing periods, refer to the help center.
*/
Expand Down

0 comments on commit e4b9a48

Please sign in to comment.