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

NAME

Net::API::Stripe::Customer::TaxIds - A Customer Tax IDs List Object

SYNOPSIS

VERSION

    0.1

DESCRIPTION

You can add one or multiple tax IDs to a customer. A customer's tax IDs are displayed on invoices and credit notes issued for the customer.

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

        {
          "id": "cus_Fzxuz7ZDVaAWy9",
          "object": "customer",
          "account_balance": 0,
          "address": null,
          "balance": 0,
          "created": 1571176460,
          "currency": "jpy",
          "default_source": null,
          "delinquent": false,
          "description": null,
          "discount": null,
          "email": null,
          "invoice_prefix": "0822CFA",
          "invoice_settings": {
                "custom_fields": null,
                "default_payment_method": null,
                "footer": null
          },
          "livemode": false,
          "metadata": {},
          "name": null,
          "phone": null,
          "preferred_locales": [],
          "shipping": null,
          "sources": {
                "object": "list",
                "data": [],
                "has_more": false,
                "url": "/v1/customers/cus_Fzxuz7ZDVaAWy9/sources"
          },
          "subscriptions": {
                "object": "list",
                "data": [],
                "has_more": false,
                "url": "/v1/customers/cus_Fzxuz7ZDVaAWy9/subscriptions"
          },
          "tax_exempt": "none",
          "tax_ids": {
                "object": "list",
                "data": [],
                "has_more": false,
                "url": "/v1/customers/cus_Fzxuz7ZDVaAWy9/tax_ids"
          },
          "tax_info": null,
          "tax_info_verification": null
        }

HISTORY

v0.1

Initial version

AUTHOR

Jacques Deguest <jack@deguest.jp>

SEE ALSO

Stripe API documentation:

https://stripe.com/docs/api/customers, https://stripe.com/docs/billing/taxes/tax-ids

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

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