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.



1473
1474
1475
1476
# File 'lib/stripe/resources/source.rb', line 1473

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

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



1468
1469
1470
# File 'lib/stripe/resources/source.rb', line 1468

def expand
  @expand
end

#valuesObject

The values needed to verify the source.



1471
1472
1473
# File 'lib/stripe/resources/source.rb', line 1471

def values
  @values
end