mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-11-13 00:01:33 -05:00
13 lines
300 B
Ruby
13 lines
300 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
class WebhookEndpoint < APIResource
|
|
extend Stripe::APIOperations::Create
|
|
include Stripe::APIOperations::Save
|
|
include Stripe::APIOperations::Delete
|
|
extend Stripe::APIOperations::List
|
|
|
|
OBJECT_NAME = "webhook_endpoint".freeze
|
|
end
|
|
end
|