Class: Stripe::TestHelpers::Issuing::AuthorizationCreateParams::VerificationData::AuthenticationExemption

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/test_helpers/issuing/authorization_create_params.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.



241
242
243
244
# File 'lib/stripe/params/test_helpers/issuing/authorization_create_params.rb', line 241

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.



237
238
239
# File 'lib/stripe/params/test_helpers/issuing/authorization_create_params.rb', line 237

def claimed_by
  @claimed_by
end

#typeObject

The specific exemption claimed for this authorization.



239
240
241
# File 'lib/stripe/params/test_helpers/issuing/authorization_create_params.rb', line 239

def type
  @type
end