mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-04 00:00:47 -04:00
20 lines
621 B
Ruby
20 lines
621 B
Ruby
# File generated from our OpenAPI spec
|
|
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
module Sigma
|
|
# If you have [scheduled a Sigma query](https://stripe.com/docs/sigma/scheduled-queries), you'll
|
|
# receive a `sigma.scheduled_query_run.created` webhook each time the query
|
|
# runs. The webhook contains a `ScheduledQueryRun` object, which you can use to
|
|
# retrieve the query results.
|
|
class ScheduledQueryRun < APIResource
|
|
extend Stripe::APIOperations::List
|
|
|
|
OBJECT_NAME = 'scheduled_query_run'
|
|
|
|
def self.resource_url
|
|
"/v1/sigma/scheduled_query_runs"
|
|
end
|
|
end
|
|
end
|
|
end |