mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-04 00:00:47 -04:00
10 lines
171 B
Ruby
10 lines
171 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
class AccountLink < APIResource
|
|
extend Stripe::APIOperations::Create
|
|
|
|
OBJECT_NAME = "account_link".freeze
|
|
end
|
|
end
|