mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-06-05 00:01:07 -04:00
13 lines
300 B
Ruby
13 lines
300 B
Ruby
module Stripe
|
|
class Recipient < APIResource
|
|
include Stripe::APIOperations::Create
|
|
include Stripe::APIOperations::Delete
|
|
include Stripe::APIOperations::Update
|
|
include Stripe::APIOperations::List
|
|
|
|
def transfers
|
|
Transfer.all({ :recipient => id }, @api_key)
|
|
end
|
|
end
|
|
end
|