Sha256: 9fb4b3d6c658058fa173967f205023c3f9ba02a6ea5a8955737db2f201b4b39d

Contents?: true

Size: 1.54 KB

Versions: 9

Compression:

Stored size: 1.54 KB

Contents

# File generated from our OpenAPI spec
# frozen_string_literal: true

module Stripe
  # A dispute occurs when a customer questions your charge with their card issuer.
  # When this happens, you have the opportunity to respond to the dispute with
  # evidence that shows that the charge is legitimate.
  #
  # Related guide: [Disputes and fraud](https://stripe.com/docs/disputes)
  class Dispute < APIResource
    extend Stripe::APIOperations::List
    include Stripe::APIOperations::Save

    OBJECT_NAME = "dispute"

    # Closing the dispute for a charge indicates that you do not have any evidence to submit and are essentially dismissing the dispute, acknowledging it as lost.
    #
    # The status of the dispute will change from needs_response to lost. Closing a dispute is irreversible.
    def close(params = {}, opts = {})
      request_stripe_object(
        method: :post,
        path: format("/v1/disputes/%<dispute>s/close", { dispute: CGI.escape(self["id"]) }),
        params: params,
        opts: opts
      )
    end

    # Closing the dispute for a charge indicates that you do not have any evidence to submit and are essentially dismissing the dispute, acknowledging it as lost.
    #
    # The status of the dispute will change from needs_response to lost. Closing a dispute is irreversible.
    def self.close(dispute, params = {}, opts = {})
      request_stripe_object(
        method: :post,
        path: format("/v1/disputes/%<dispute>s/close", { dispute: CGI.escape(dispute) }),
        params: params,
        opts: opts
      )
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
stripe-10.7.1 lib/stripe/resources/dispute.rb
stripe-10.8.0.pre.beta.1 lib/stripe/resources/dispute.rb
stripe-10.7.0 lib/stripe/resources/dispute.rb
stripe-10.7.0.pre.beta.3 lib/stripe/resources/dispute.rb
stripe-10.7.0.pre.beta.2 lib/stripe/resources/dispute.rb
stripe-10.7.0.pre.beta.1 lib/stripe/resources/dispute.rb
stripe-10.6.0 lib/stripe/resources/dispute.rb
stripe-10.6.0.pre.beta.1 lib/stripe/resources/dispute.rb
stripe-10.5.0 lib/stripe/resources/dispute.rb