Class: CheckoutSdk::Previous::Sources::SourceRequest
- Inherits:
-
Object
- Object
- CheckoutSdk::Previous::Sources::SourceRequest
- Defined in:
- lib/checkout_sdk/sources/source_request.rb
Direct Known Subclasses
Instance Attribute Summary collapse
- #customer ⇒ CheckoutSdk::Common::CustomerRequest
- #phone ⇒ CheckoutSdk::Common::Phone
- #reference ⇒ String
- #type ⇒ String
Instance Attribute Details
#customer ⇒ CheckoutSdk::Common::CustomerRequest
14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/checkout_sdk/sources/source_request.rb', line 14 class SourceRequest attr_reader :type attr_accessor :reference, :phone, :customer protected # @abstract # @param [String] {SourceType} def initialize(type) @type = type end end |
#phone ⇒ CheckoutSdk::Common::Phone
14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/checkout_sdk/sources/source_request.rb', line 14 class SourceRequest attr_reader :type attr_accessor :reference, :phone, :customer protected # @abstract # @param [String] {SourceType} def initialize(type) @type = type end end |
#reference ⇒ String
14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/checkout_sdk/sources/source_request.rb', line 14 class SourceRequest attr_reader :type attr_accessor :reference, :phone, :customer protected # @abstract # @param [String] {SourceType} def initialize(type) @type = type end end |
#type ⇒ String
14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/checkout_sdk/sources/source_request.rb', line 14 class SourceRequest attr_reader :type attr_accessor :reference, :phone, :customer protected # @abstract # @param [String] {SourceType} def initialize(type) @type = type end end |