Class: Stripe::DisputeUpdateParams::Evidence::EnhancedEvidence::VisaCompliance
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::DisputeUpdateParams::Evidence::EnhancedEvidence::VisaCompliance
- Defined in:
- lib/stripe/params/dispute_update_params.rb
Instance Attribute Summary collapse
-
#fee_acknowledged ⇒ Object
A field acknowledging the fee incurred when countering a Visa compliance dispute.
Instance Method Summary collapse
-
#initialize(fee_acknowledged: nil) ⇒ VisaCompliance
constructor
A new instance of VisaCompliance.
Methods inherited from RequestParams
Constructor Details
#initialize(fee_acknowledged: nil) ⇒ VisaCompliance
Returns a new instance of VisaCompliance.
161 162 163 |
# File 'lib/stripe/params/dispute_update_params.rb', line 161 def initialize(fee_acknowledged: nil) @fee_acknowledged = fee_acknowledged end |
Instance Attribute Details
#fee_acknowledged ⇒ Object
A field acknowledging the fee incurred when countering a Visa compliance dispute. If this field is set to true, evidence can be submitted for the compliance dispute. Stripe collects a 500 USD (or local equivalent) amount to cover the network costs associated with resolving compliance disputes. Stripe refunds the 500 USD network fee if you win the dispute.
159 160 161 |
# File 'lib/stripe/params/dispute_update_params.rb', line 159 def fee_acknowledged @fee_acknowledged end |