Skip to content

Commit 4601ce2

Browse files
authored
feat(billing): add consumer_id to v2beta1.ListConsumptions (#2537)
1 parent 91c927f commit 4601ce2

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

packages_generated/billing/src/v2beta1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ const unmarshalListConsumptionsResponseConsumption = (
114114
return {
115115
billedQuantity: data.billed_quantity,
116116
categoryName: data.category_name,
117+
consumerId: data.consumer_id,
117118
productName: data.product_name,
118119
projectId: data.project_id,
119120
resourceName: data.resource_name,

packages_generated/billing/src/v2beta1/types.gen.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,10 @@ export interface ListConsumptionsResponseConsumption {
130130
* Consumed quantity.
131131
*/
132132
billedQuantity: string
133+
/**
134+
* Organization ID of the consumer for this consumption.
135+
*/
136+
consumerId: string
133137
}
134138

135139
export interface Discount {

0 commit comments

Comments
 (0)