Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/resources/customers/costs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -880,12 +880,12 @@ export interface CostListParams {
/**
* Costs returned are exclusive of `timeframe_end`.
*/
timeframe_end?: string | null;
timeframe_end?: string;

/**
* Costs returned are inclusive of `timeframe_start`.
*/
timeframe_start?: string | null;
timeframe_start?: string;

/**
* Controls whether Orb returns cumulative costs since the start of the billing
Expand All @@ -900,12 +900,12 @@ export interface CostListByExternalIDParams {
/**
* Costs returned are exclusive of `timeframe_end`.
*/
timeframe_end?: string | null;
timeframe_end?: string;

/**
* Costs returned are inclusive of `timeframe_start`.
*/
timeframe_start?: string | null;
timeframe_start?: string;

/**
* Controls whether Orb returns cumulative costs since the start of the billing
Expand Down
4 changes: 2 additions & 2 deletions src/resources/subscriptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3154,12 +3154,12 @@ export interface SubscriptionFetchCostsParams {
/**
* Costs returned are exclusive of `timeframe_end`.
*/
timeframe_end?: string | null;
timeframe_end?: string;

/**
* Costs returned are inclusive of `timeframe_start`.
*/
timeframe_start?: string | null;
timeframe_start?: string;

/**
* Controls whether Orb returns cumulative costs since the start of the billing
Expand Down