The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::API::Stripe::Balance - An interface to Stripe API

SYNOPSIS

VERSION

    0.1

DESCRIPTION

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

address hash

Billing address.

This is a Net::API::Stripe::Address object.

email string

Email address.

name string

Full name.

phone string

Billing phone number (including extension).

API SAMPLE

        {
          "id": "pm_123456789",
          "object": "payment_method",
          "billing_details": {
                "address": {
                  "city": "Anytown",
                  "country": "US",
                  "line1": "1234 Main street",
                  "line2": null,
                  "postal_code": "123456",
                  "state": null
                },
                "email": "jenny@example.com",
                "name": null,
                "phone": "+15555555555"
          },
          "card": {
                "brand": "visa",
                "checks": {
                  "address_line1_check": null,
                  "address_postal_code_check": null,
                  "cvc_check": null
                },
                "country": "US",
                "exp_month": 8,
                "exp_year": 2020,
                "fingerprint": "x18XyLUPM6hub5xz",
                "funding": "credit",
                "generated_from": null,
                "last4": "4242",
                "three_d_secure_usage": {
                  "supported": true
                },
                "wallet": null
          },
          "created": 123456789,
          "customer": null,
          "livemode": false,
          "metadata": {
                "order_id": "123456789"
          },
          "type": "card"
        }

HISTORY

v0.1

Initial version

AUTHOR

Jacques Deguest <jack@deguest.jp>

SEE ALSO

Stripe API documentation:

https://stripe.com/docs/api

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 69:

You forgot a '=back' before '=head1'