Class: Stripe::SourceService::VerifyParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/services/source_service.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.



700
701
702
703
# File 'lib/stripe/services/source_service.rb', line 700

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

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



695
696
697
# File 'lib/stripe/services/source_service.rb', line 695

def expand
  @expand
end

#valuesObject

The values needed to verify the source.



698
699
700
# File 'lib/stripe/services/source_service.rb', line 698

def values
  @values
end