mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-12-15 00:01:08 -05:00
15 lines
341 B
Ruby
15 lines
341 B
Ruby
module Stripe
|
|
# Domains registered for Apple Pay on the Web
|
|
class ApplePayDomain < APIResource
|
|
extend Stripe::APIOperations::Create
|
|
include Stripe::APIOperations::Delete
|
|
extend Stripe::APIOperations::List
|
|
|
|
OBJECT_NAME = "apple_pay_domain".freeze
|
|
|
|
def self.resource_url
|
|
"/v1/apple_pay/domains"
|
|
end
|
|
end
|
|
end
|