Skip to content

Commit

Permalink
feat(api): api update (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Nov 6, 2024
1 parent e3396a6 commit b188565
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 91
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/metronome%2Fmetronome-cab3c7a5a2b2d37cc31ffd0a3b12a4bf0a6089ab5aede2a0a27fe3eaee365376.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/metronome%2Fmetronome-6dcbe131976438514039571dfab3379d6429b608799f27dca65331d0bbc73fdb.yml
4 changes: 2 additions & 2 deletions customerinvoice.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ func (r *CustomerInvoiceService) AddCharge(ctx context.Context, params CustomerI
return
}

// List daily or hourly breakdown invoices for a given customer, optionally
// List daily or hourly invoice breakdowns for a given customer, optionally
// filtered by status, date range, and/or credit type.
func (r *CustomerInvoiceService) ListBreakdowns(ctx context.Context, params CustomerInvoiceListBreakdownsParams, opts ...option.RequestOption) (res *pagination.CursorPage[CustomerInvoiceListBreakdownsResponse], err error) {
var raw *http.Response
Expand All @@ -118,7 +118,7 @@ func (r *CustomerInvoiceService) ListBreakdowns(ctx context.Context, params Cust
return res, nil
}

// List daily or hourly breakdown invoices for a given customer, optionally
// List daily or hourly invoice breakdowns for a given customer, optionally
// filtered by status, date range, and/or credit type.
func (r *CustomerInvoiceService) ListBreakdownsAutoPaging(ctx context.Context, params CustomerInvoiceListBreakdownsParams, opts ...option.RequestOption) *pagination.CursorPageAutoPager[CustomerInvoiceListBreakdownsResponse] {
return pagination.NewCursorPageAutoPager(r.ListBreakdowns(ctx, params, opts...))
Expand Down

0 comments on commit b188565

Please sign in to comment.