Class: Stripe::Issuing::AuthorizationCreateParams::VerificationData::AuthenticationExemption
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::AuthorizationCreateParams::VerificationData::AuthenticationExemption
- Defined in:
- lib/stripe/params/issuing/authorization_create_params.rb
Instance Attribute Summary collapse
-
#claimed_by ⇒ Object
The entity that requested the exemption, either the acquiring merchant or the Issuing user.
-
#type ⇒ Object
The specific exemption claimed for this authorization.
Instance Method Summary collapse
-
#initialize(claimed_by: nil, type: nil) ⇒ AuthenticationExemption
constructor
A new instance of AuthenticationExemption.
Methods inherited from RequestParams
Constructor Details
#initialize(claimed_by: nil, type: nil) ⇒ AuthenticationExemption
Returns a new instance of AuthenticationExemption.
240 241 242 243 |
# File 'lib/stripe/params/issuing/authorization_create_params.rb', line 240 def initialize(claimed_by: nil, type: nil) @claimed_by = claimed_by @type = type end |
Instance Attribute Details
#claimed_by ⇒ Object
The entity that requested the exemption, either the acquiring merchant or the Issuing user.
236 237 238 |
# File 'lib/stripe/params/issuing/authorization_create_params.rb', line 236 def claimed_by @claimed_by end |
#type ⇒ Object
The specific exemption claimed for this authorization.
238 239 240 |
# File 'lib/stripe/params/issuing/authorization_create_params.rb', line 238 def type @type end |