Class: Stripe::Identity::VerificationSessionUpdateParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Identity::VerificationSessionUpdateParams
- Defined in:
- lib/stripe/params/identity/verification_session_update_params.rb
Defined Under Namespace
Classes: Options, ProvidedDetails
Instance Attribute Summary collapse
-
#expand ⇒ Object
Specifies which fields in the response should be expanded.
-
#metadata ⇒ Object
Set of [key-value pairs](stripe.com/docs/api/metadata) that you can attach to an object.
-
#options ⇒ Object
A set of options for the session’s verification checks.
-
#provided_details ⇒ Object
Details provided about the user being verified.
-
#type ⇒ Object
The type of [verification check](stripe.com/docs/identity/verification-checks) to be performed.
Instance Method Summary collapse
-
#initialize(expand: nil, metadata: nil, options: nil, provided_details: nil, type: nil) ⇒ VerificationSessionUpdateParams
constructor
A new instance of VerificationSessionUpdateParams.
Methods inherited from RequestParams
Constructor Details
#initialize(expand: nil, metadata: nil, options: nil, provided_details: nil, type: nil) ⇒ VerificationSessionUpdateParams
Returns a new instance of VerificationSessionUpdateParams.
60 61 62 63 64 65 66 |
# File 'lib/stripe/params/identity/verification_session_update_params.rb', line 60 def initialize(expand: nil, metadata: nil, options: nil, provided_details: nil, type: nil) @expand = @metadata = @options = @provided_details = provided_details @type = type end |
Instance Attribute Details
#expand ⇒ Object
Specifies which fields in the response should be expanded.
50 51 52 |
# File 'lib/stripe/params/identity/verification_session_update_params.rb', line 50 def @expand end |
#metadata ⇒ Object
Set of [key-value pairs](stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to ‘metadata`.
52 53 54 |
# File 'lib/stripe/params/identity/verification_session_update_params.rb', line 52 def @metadata end |
#options ⇒ Object
A set of options for the session’s verification checks.
54 55 56 |
# File 'lib/stripe/params/identity/verification_session_update_params.rb', line 54 def @options end |
#provided_details ⇒ Object
Details provided about the user being verified. These details may be shown to the user.
56 57 58 |
# File 'lib/stripe/params/identity/verification_session_update_params.rb', line 56 def provided_details @provided_details end |
#type ⇒ Object
The type of [verification check](stripe.com/docs/identity/verification-checks) to be performed.
58 59 60 |
# File 'lib/stripe/params/identity/verification_session_update_params.rb', line 58 def type @type end |