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.



1168
1169
1170
1171
# File 'lib/stripe/resources/source.rb', line 1168

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

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



1164
1165
1166
# File 'lib/stripe/resources/source.rb', line 1164

def expand
  @expand
end

#valuesObject

The values needed to verify the source.



1166
1167
1168
# File 'lib/stripe/resources/source.rb', line 1166

def values
  @values
end