From eff9bdf856178558097d2d5725f33a6dd5430288 Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Fri, 26 Jan 2018 15:29:44 -0500 Subject: [PATCH] README: Document ``stripe payout ledger entry``. --- README.rst | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) diff --git a/README.rst b/README.rst index 5eb6220..57c139c 100644 --- a/README.rst +++ b/README.rst @@ -219,6 +219,71 @@ Stripe a plain decimal number ============== ========================================================== +``stripe payout ledger entry`` + Imports one transaction per payment. Generated from Stripe's payouts CSV export. + + This template can use these variables: + + ========================== ============================================== + Name Contents + ========================== ============================================== + adjustment_count Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + adjustment_gross Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + adjustment_fees Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + adjustment_net Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + balance_txid Stripe ID of the balance transaction + -------------------------- ---------------------------------------------- + collected_fee_count Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + collected_fee_gross Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + collected_fee_refund_count Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + collected_fee_refund_gross Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + destination_id Stripe ID of the payout destination account + -------------------------- ---------------------------------------------- + failure_txid Stripe ID of the failure balance transaction + -------------------------- ---------------------------------------------- + payment_count Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + payment_gross Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + payment_fees Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + payment_net Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + payout_id Stripe ID of this payout + -------------------------- ---------------------------------------------- + refund_count Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + refund_gross Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + refund_fees Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + refund_net Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + total_count Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + total_gross Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + total_fees Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + total_net Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + validation_count Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + validation_fees Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + retried_payout_count Decimal from the corresponding CSV column + -------------------------- ---------------------------------------------- + retried_payout_net Decimal from the corresponding CSV column + ========================== ============================================== + Other output options ~~~~~~~~~~~~~~~~~~~~