Class: Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::VerificationData::AuthenticationExemption

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/test_helpers/issuing/authorization_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(claimed_by: nil, type: nil) ⇒ AuthenticationExemption

Returns a new instance of AuthenticationExemption.



224
225
226
227
# File 'lib/stripe/services/test_helpers/issuing/authorization_service.rb', line 224

def initialize(claimed_by: nil, type: nil)
  @claimed_by = claimed_by
  @type = type
end

Instance Attribute Details

#claimed_byObject

The entity that requested the exemption, either the acquiring merchant or the Issuing user.



219
220
221
# File 'lib/stripe/services/test_helpers/issuing/authorization_service.rb', line 219

def claimed_by
  @claimed_by
end

#typeObject

The specific exemption claimed for this authorization.



222
223
224
# File 'lib/stripe/services/test_helpers/issuing/authorization_service.rb', line 222

def type
  @type
end