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.



1180
1181
1182
1183
# File 'lib/stripe/resources/source.rb', line 1180

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

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



1176
1177
1178
# File 'lib/stripe/resources/source.rb', line 1176

def expand
  @expand
end

#valuesObject

The values needed to verify the source.



1178
1179
1180
# File 'lib/stripe/resources/source.rb', line 1178

def values
  @values
end