mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-05-27 00:02:59 -04:00
15 lines
327 B
Ruby
15 lines
327 B
Ruby
module Stripe
|
|
class Recipient < APIResource
|
|
extend Stripe::APIOperations::Create
|
|
include Stripe::APIOperations::Delete
|
|
include Stripe::APIOperations::Save
|
|
extend Stripe::APIOperations::List
|
|
|
|
OBJECT_NAME = 'recipient'
|
|
|
|
def transfers
|
|
Transfer.all({ :recipient => id }, @api_key)
|
|
end
|
|
end
|
|
end
|