NAME
Net::API::Stripe::Connect::Transfer::Reversals - A list of Transfer Reversal as Object
SYNOPSIS
VERSION
0.1
DESCRIPTION
A list of reversals that have been applied to the transfer.
This module inherits from Net::API::Stripe::List
and overrides only the data method.
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
- object string, value is "list"
-
String representing the object’s type. Objects of the same type share the same value. Always has the value list.
- data array of hashes
-
Array of
Net::API::Stripe::Connect::Transfer::Reversal
objects. - has_more boolean
-
True if this list has another page of items after this one that can be fetched.
- url string
-
The URL where this list can be accessed.
API SAMPLE
{
"object": "list",
"url": "/v1/transfers/tr_1FVF3MCeyNCl6fY2ibhPTw7J/reversals",
"has_more": false,
"data": [
{
"id": "trr_1FVF3MCeyNCl6fY2UM85yr0M",
"object": "transfer_reversal",
"amount": 1100,
"balance_transaction": "txn_1A3RPuCeyNCl6fY29RsjBA0b",
"created": 1571480456,
"currency": "jpy",
"destination_payment_refund": null,
"metadata": {},
"source_refund": null,
"transfer": "tr_1FVF3MCeyNCl6fY2ibhPTw7J"
},
{...},
{...}
]
}
HISTORY
v0.1
Initial version
AUTHOR
Jacques Deguest <jack@deguest.jp>
SEE ALSO
Stripe API documentation:
https://stripe.com/docs/api/transfer_reversals/list
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 79:
You forgot a '=back' before '=head1'