The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Net::API::Stripe::Dispute::EvidenceDetails - Dispute Evidence Details Object

SYNOPSIS

    my $detail = $dispute->evidence_details({
        due_by => '2020-04-12',
        has_evidence => $stripe->true,
        past_due => '2020-05-01',
        submission_count => 2,
    });

VERSION

    v0.100.0

DESCRIPTION

This is instantiated by method evidence_details from module Net::API::Stripe::Dispute

CONSTRUCTOR

new( %ARG )

Creates a new Net::API::Stripe::Dispute::EvidenceDetails object. It may also take an hash like arguments, that also are method of the same name.

METHODS

due_by timestamp

Date by which evidence must be submitted in order to successfully challenge dispute. Will be null if the customer’s bank or credit card company doesn’t allow a response for this particular dispute.

has_evidence boolean

Whether evidence has been staged for this dispute.

past_due boolean

Whether the last evidence submission was submitted past the due date. Defaults to false if no evidence submissions have occurred. If true, then delivery of the latest evidence is not guaranteed.

submission_count integer

The number of times evidence has been submitted. Typically, you may only submit evidence once.

API SAMPLE

        {
          "object": "balance",
          "available": [
                {
                  "amount": 0,
                  "currency": "jpy",
                  "source_types": {
                        "card": 0
                  }
                }
          ],
          "connect_reserved": [
                {
                  "amount": 0,
                  "currency": "jpy"
                }
          ],
          "livemode": false,
          "pending": [
                {
                  "amount": 7712,
                  "currency": "jpy",
                  "source_types": {
                        "card": 7712
                  }
                }
          ]
        }

HISTORY

v0.1

Initial version

AUTHOR

Jacques Deguest <jack@deguest.jp>

SEE ALSO

Stripe API documentation:

https://stripe.com/docs/api/disputes/object

COPYRIGHT & LICENSE

Copyright (c) 2019-2020 DEGUEST Pte. Ltd.

You can use, copy, modify and redistribute this package and associated files under the same terms as Perl itself.