@@ -47,8 +47,8 @@ func NewEventBackfillService(opts ...option.RequestOption) (r *EventBackfillServ
4747// 3 steps:
4848//
4949// 1. Create the backfill, specifying its parameters.
50- // 2. [Ingest](ingest) usage events, referencing the backfill (query parameter
51- // `backfill_id`).
50+ // 2. [Ingest](/api-reference/event/ ingest-events ) usage events, referencing the
51+ // backfill (query parameter `backfill_id`).
5252// 3. [Close](close-backfill) the backfill, propagating the update in past usage
5353// throughout Orb.
5454//
@@ -94,8 +94,7 @@ func (r *EventBackfillService) New(ctx context.Context, body EventBackfillNewPar
9494// The list of backfills is ordered starting from the most recently created
9595// backfill. The response also includes
9696// [`pagination_metadata`](/api-reference/pagination), which lets the caller
97- // retrieve the next page of results if they exist. More information about
98- // pagination can be found in the [Pagination-metadata schema](pagination).
97+ // retrieve the next page of results if they exist.
9998func (r * EventBackfillService ) List (ctx context.Context , query EventBackfillListParams , opts ... option.RequestOption ) (res * pagination.Page [EventBackfillListResponse ], err error ) {
10099 var raw * http.Response
101100 opts = slices .Concat (r .Options , opts )
@@ -118,8 +117,7 @@ func (r *EventBackfillService) List(ctx context.Context, query EventBackfillList
118117// The list of backfills is ordered starting from the most recently created
119118// backfill. The response also includes
120119// [`pagination_metadata`](/api-reference/pagination), which lets the caller
121- // retrieve the next page of results if they exist. More information about
122- // pagination can be found in the [Pagination-metadata schema](pagination).
120+ // retrieve the next page of results if they exist.
123121func (r * EventBackfillService ) ListAutoPaging (ctx context.Context , query EventBackfillListParams , opts ... option.RequestOption ) * pagination.PageAutoPager [EventBackfillListResponse ] {
124122 return pagination .NewPageAutoPager (r .List (ctx , query , opts ... ))
125123}
0 commit comments