@maxim_mazurok/gapi.client.cloudchannel-v1 0.0.20250804 → 0.0.20250809
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +13 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://cloudchannel.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250809
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -484,6 +484,14 @@ declare namespace gapi.client {
|
|
|
484
484
|
/** The earliest usage date time (inclusive). If you use time groupings (daily, weekly, etc), each group uses midnight to midnight (Pacific time). The usage start date is rounded down to include all usage from the specified date. We recommend that clients pass `usage_start_date_time` in Pacific time. */
|
|
485
485
|
usageStartDateTime?: GoogleTypeDateTime;
|
|
486
486
|
}
|
|
487
|
+
interface GoogleCloudChannelV1DiscountComponent {
|
|
488
|
+
/** Fixed value discount. */
|
|
489
|
+
discountAbsolute?: GoogleTypeMoney;
|
|
490
|
+
/** Discount percentage, represented as decimal. For example, a 20% discount will be represented as 0.2. */
|
|
491
|
+
discountPercentage?: number;
|
|
492
|
+
/** Type of the discount. */
|
|
493
|
+
discountType?: string;
|
|
494
|
+
}
|
|
487
495
|
interface GoogleCloudChannelV1EduData {
|
|
488
496
|
/** Size of the institute. */
|
|
489
497
|
instituteSize?: string;
|
|
@@ -811,10 +819,14 @@ declare namespace gapi.client {
|
|
|
811
819
|
basePrice?: GoogleTypeMoney;
|
|
812
820
|
/** Discount percentage, represented as decimal. For example, a 20% discount will be represent as 0.2. */
|
|
813
821
|
discount?: number;
|
|
822
|
+
/** Breakdown of the discount into its components. This will be empty if there is no discount present. */
|
|
823
|
+
discountComponents?: GoogleCloudChannelV1DiscountComponent[];
|
|
814
824
|
/** Effective Price after applying the discounts. */
|
|
815
825
|
effectivePrice?: GoogleTypeMoney;
|
|
816
826
|
/** Link to external price list, such as link to Google Voice rate card. */
|
|
817
827
|
externalPriceUri?: string;
|
|
828
|
+
/** The time period with respect to which base and effective prices are defined. Example: 1 month, 6 months, 1 year, etc. */
|
|
829
|
+
pricePeriod?: GoogleCloudChannelV1Period;
|
|
818
830
|
}
|
|
819
831
|
interface GoogleCloudChannelV1PriceByResource {
|
|
820
832
|
/** Price of the Offer. Present if there are no price phases. */
|