Class: Stripe::Source::VerifyParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Source::VerifyParams
- Defined in:
- lib/stripe/resources/source.rb
Instance Attribute Summary collapse
-
#expand ⇒ Object
Specifies which fields in the response should be expanded.
-
#values ⇒ Object
The values needed to verify the source.
Instance Method Summary collapse
-
#initialize(expand: nil, values: nil) ⇒ VerifyParams
constructor
A new instance of VerifyParams.
Methods inherited from RequestParams
Constructor Details
#initialize(expand: nil, values: nil) ⇒ VerifyParams
Returns a new instance of VerifyParams.
1141 1142 1143 1144 |
# File 'lib/stripe/resources/source.rb', line 1141 def initialize(expand: nil, values: nil) @expand = @values = values end |
Instance Attribute Details
#expand ⇒ Object
Specifies which fields in the response should be expanded.
1137 1138 1139 |
# File 'lib/stripe/resources/source.rb', line 1137 def @expand end |
#values ⇒ Object
The values needed to verify the source.
1139 1140 1141 |
# File 'lib/stripe/resources/source.rb', line 1139 def values @values end |