File tree 3 files changed +31
-1
lines changed
3 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 1
1
configured_endpoints : 103
2
- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-d4f03b16daf0bae33be634c959dafb0e21b0bcb156beb162f8235394dca88e7c .yml
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-c8fc7d0bf70bf7ed91a141f346a02929e4d25a6fac7b59f58b68136ed6ff024f .yml
Original file line number Diff line number Diff line change @@ -59,6 +59,11 @@ export interface InvoiceLineItemCreateResponse {
59
59
*/
60
60
end_date : string ;
61
61
62
+ /**
63
+ * An additional filter that was used to calculate the usage for this line item.
64
+ */
65
+ filter : string | null ;
66
+
62
67
/**
63
68
* [DEPRECATED] For configured prices that are split by a grouping key, this will
64
69
* be populated with the key and a value. The `amount` and `subtotal` will be the
@@ -140,6 +145,11 @@ export interface InvoiceLineItemCreateResponse {
140
145
* integration is configured.
141
146
*/
142
147
tax_amounts : Array < InvoiceLineItemCreateResponse . TaxAmount > ;
148
+
149
+ /**
150
+ * A list of customer ids that were used to calculate the usage for this line item.
151
+ */
152
+ usage_customer_ids : Array < string > | null ;
143
153
}
144
154
145
155
export namespace InvoiceLineItemCreateResponse {
Original file line number Diff line number Diff line change @@ -886,6 +886,11 @@ export namespace Invoice {
886
886
*/
887
887
end_date : string ;
888
888
889
+ /**
890
+ * An additional filter that was used to calculate the usage for this line item.
891
+ */
892
+ filter : string | null ;
893
+
889
894
/**
890
895
* [DEPRECATED] For configured prices that are split by a grouping key, this will
891
896
* be populated with the key and a value. The `amount` and `subtotal` will be the
@@ -963,6 +968,11 @@ export namespace Invoice {
963
968
* integration is configured.
964
969
*/
965
970
tax_amounts : Array < LineItem . TaxAmount > ;
971
+
972
+ /**
973
+ * A list of customer ids that were used to calculate the usage for this line item.
974
+ */
975
+ usage_customer_ids : Array < string > | null ;
966
976
}
967
977
968
978
export namespace LineItem {
@@ -2097,6 +2107,11 @@ export namespace InvoiceFetchUpcomingResponse {
2097
2107
*/
2098
2108
end_date : string ;
2099
2109
2110
+ /**
2111
+ * An additional filter that was used to calculate the usage for this line item.
2112
+ */
2113
+ filter : string | null ;
2114
+
2100
2115
/**
2101
2116
* [DEPRECATED] For configured prices that are split by a grouping key, this will
2102
2117
* be populated with the key and a value. The `amount` and `subtotal` will be the
@@ -2174,6 +2189,11 @@ export namespace InvoiceFetchUpcomingResponse {
2174
2189
* integration is configured.
2175
2190
*/
2176
2191
tax_amounts : Array < LineItem . TaxAmount > ;
2192
+
2193
+ /**
2194
+ * A list of customer ids that were used to calculate the usage for this line item.
2195
+ */
2196
+ usage_customer_ids : Array < string > | null ;
2177
2197
}
2178
2198
2179
2199
export namespace LineItem {
You can’t perform that action at this time.
0 commit comments