Class: Stripe::Source::VerifyParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/resources/source.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(expand: nil, values: nil) ⇒ VerifyParams

Returns a new instance of VerifyParams.



1408
1409
1410
1411
# File 'lib/stripe/resources/source.rb', line 1408

def initialize(expand: nil, values: nil)
  @expand = expand
  @values = values
end

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



1404
1405
1406
# File 'lib/stripe/resources/source.rb', line 1404

def expand
  @expand
end

#valuesObject

The values needed to verify the source.



1406
1407
1408
# File 'lib/stripe/resources/source.rb', line 1406

def values
  @values
end