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

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/issuing/authorization_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

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

Returns a new instance of AuthenticationExemption.



315
316
317
318
# File 'lib/stripe/params/issuing/authorization_create_params.rb', line 315

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.



311
312
313
# File 'lib/stripe/params/issuing/authorization_create_params.rb', line 311

def claimed_by
  @claimed_by
end

#typeObject

The specific exemption claimed for this authorization.



313
314
315
# File 'lib/stripe/params/issuing/authorization_create_params.rb', line 313

def type
  @type
end