Skip to content

Commit

Permalink
feat(reseller): update the API
Browse files Browse the repository at this point in the history
#### reseller:v1

The following keys were added:
- schemas.Subscription.properties.transferInfo.properties.currentLegacySkuId.description
- schemas.Subscription.properties.transferInfo.properties.currentLegacySkuId.type
  • Loading branch information
yoshi-automation authored and bcoe committed Mar 25, 2021
1 parent a0d3466 commit ce4a444
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion discovery/reseller-v1.json
Expand Up @@ -631,7 +631,7 @@
}
}
},
"revision": "20210308",
"revision": "20210323",
"rootUrl": "https://reseller.googleapis.com/",
"schemas": {
"Address": {
Expand Down Expand Up @@ -924,6 +924,10 @@
"transferInfo": {
"description": "Read-only transfer related information for the subscription. For more information, see retrieve transferable subscriptions for a customer.",
"properties": {
"currentLegacySkuId": {
"description": "Sku id of the current resold subscription. This is populated only when customer has subscription with legacy sku and the subscription resource is populated with recommeded sku for transfer in.",
"type": "string"
},
"minimumTransferableSeats": {
"description": "When inserting a subscription, this is the minimum number of seats listed in the transfer order for this product. For example, if the customer has 20 users, the reseller cannot place a transfer order of 15 seats. The minimum is 20 seats.",
"format": "int32",
Expand Down
1 change: 1 addition & 0 deletions src/apis/reseller/v1.ts
Expand Up @@ -368,6 +368,7 @@ export namespace reseller_v1 {
* Read-only transfer related information for the subscription. For more information, see retrieve transferable subscriptions for a customer.
*/
transferInfo?: {
currentLegacySkuId?: string;
minimumTransferableSeats?: number;
transferabilityExpirationTime?: string;
} | null;
Expand Down

0 comments on commit ce4a444

Please sign in to comment.