Class: Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::VerificationData::AuthenticationExemption
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::VerificationData::AuthenticationExemption
- Defined in:
- lib/stripe/services/test_helpers/issuing/authorization_service.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.
200 201 202 203 |
# File 'lib/stripe/services/test_helpers/issuing/authorization_service.rb', line 200 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.
196 197 198 |
# File 'lib/stripe/services/test_helpers/issuing/authorization_service.rb', line 196 def claimed_by @claimed_by end |
#type ⇒ Object
The specific exemption claimed for this authorization.
198 199 200 |
# File 'lib/stripe/services/test_helpers/issuing/authorization_service.rb', line 198 def type @type end |