// File generated from our OpenAPI spec declare module 'stripe' { namespace Stripe { namespace Sigma { interface ScheduledQueryRunRetrieveParams { /** * Specifies which fields in the response should be expanded. */ expand?: Array; } interface ScheduledQueryRunListParams extends PaginationParams { /** * Specifies which fields in the response should be expanded. */ expand?: Array; } class ScheduledQueryRunsResource { /** * Retrieves the details of an scheduled query run. */ retrieve( id: string, params?: ScheduledQueryRunRetrieveParams, options?: RequestOptions ): Promise>; retrieve( id: string, options?: RequestOptions ): Promise>; /** * Returns a list of scheduled query runs. */ list( params?: ScheduledQueryRunListParams, options?: RequestOptions ): ApiListPromise; list( options?: RequestOptions ): ApiListPromise; } } } }