Class: Stripe::SourceVerifyParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::SourceVerifyParams
- Defined in:
- lib/stripe/params/source_verify_params.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) ⇒ SourceVerifyParams
constructor
A new instance of SourceVerifyParams.
Methods inherited from RequestParams
Constructor Details
#initialize(expand: nil, values: nil) ⇒ SourceVerifyParams
Returns a new instance of SourceVerifyParams.
11 12 13 14 |
# File 'lib/stripe/params/source_verify_params.rb', line 11 def initialize(expand: nil, values: nil) @expand = @values = values end |
Instance Attribute Details
#expand ⇒ Object
Specifies which fields in the response should be expanded.
7 8 9 |
# File 'lib/stripe/params/source_verify_params.rb', line 7 def @expand end |
#values ⇒ Object
The values needed to verify the source.
9 10 11 |
# File 'lib/stripe/params/source_verify_params.rb', line 9 def values @values end |