Class: CheckoutSdk::Payments::PayoutSource
- Inherits:
-
Object
- Object
- CheckoutSdk::Payments::PayoutSource
show all
- Defined in:
- lib/checkout_sdk/payments/source/payout_source.rb
Instance Attribute Summary collapse
Instance Attribute Details
#amount ⇒ String
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# File 'lib/checkout_sdk/payments/source/payout_source.rb', line 11
class PayoutSource
attr_reader :type
attr_accessor :id,
:amount
protected
def initialize(type)
@type = type
end
end
|
#id ⇒ String
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# File 'lib/checkout_sdk/payments/source/payout_source.rb', line 11
class PayoutSource
attr_reader :type
attr_accessor :id,
:amount
protected
def initialize(type)
@type = type
end
end
|
#type ⇒ String
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# File 'lib/checkout_sdk/payments/source/payout_source.rb', line 11
class PayoutSource
attr_reader :type
attr_accessor :id,
:amount
protected
def initialize(type)
@type = type
end
end
|