NAME
Net::API::Stripe::Issuing::Dispute::Evidence - A Stripe Issued Card Dispute Evidence Object
SYNOPSIS
VERSION
0.1
DESCRIPTION
Evidence related to the dispute. This hash will contain exactly one non-null value, containing an evidence object that matches its reason
CONSTRUCTOR
- new( %ARG )
-
Creates a new
Net::API::Stripe
objects. It may also take an hash like arguments, that also are method of the same name.- verbose
-
Toggles verbose mode on/off
- debug
-
Toggles debug mode on/off
METHODS
- fraudulent hash
-
Evidence to support a fraudulent dispute. This will only be present if your dispute’s reason is fraudulent.
This is a
Net::API::Stripe::Issuing::Dispute::Evidence::Fraudulent
object. - other hash
-
Evidence to support an uncategorized dispute. This will only be present if your dispute’s reason is other.
This is a
Net::API::Stripe::Issuing::Dispute::Evidence::Other
object.
API SAMPLE
{
"id": "idp_1FVF3MCeyNCl6fY2U60c43Sz",
"object": "issuing.dispute",
"amount": 100,
"created": 1571480456,
"currency": "usd",
"disputed_transaction": "ipi_1FVF3MCeyNCl6fY2uC8uNvgo",
"evidence": {
"fraudulent": {
"dispute_explanation": "Fraud; card reported lost on 10/19/2019",
"uncategorized_file": null
},
"other": null
},
"livemode": false,
"metadata": {},
"reason": "fraudulent",
"status": "under_review"
}
HISTORY
v0.1
Initial version
AUTHOR
Jacques Deguest <jack@deguest.jp>
SEE ALSO
Stripe API documentation:
https://stripe.com/docs/api/issuing/disputes, https://stripe.com/docs/issuing/disputes
COPYRIGHT & LICENSE
Copyright (c) 2018-2019 DEGUEST Pte. Ltd.
You can use, copy, modify and redistribute this package and associated files under the same terms as Perl itself.
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 66:
You forgot a '=back' before '=head1'