NAME

Net::API::Stripe::Balance::Pending - A Stripe Pending Fund Object

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

amount integer

Balance amount.

currency currency

Three-letter ISO currency code, in lowercase. Must be a supported currency.

source_types hash

Breakdown of balance by source types. This is a virtual Net::API::Stripe::Payment::Source::Types module that contains the following properties:

bank_account integer

Amount for bank account.

card integer

Amount for card.

API SAMPLE

{
  "object": "balance",
  "available": [
	{
	  "amount": 7712,
	  "currency": "jpy",
	  "source_types": {
		"card": 7712
	  }
	}
  ],
  "connect_reserved": [
	{
	  "amount": 0,
	  "currency": "jpy"
	}
  ],
  "livemode": false,
  "pending": [
	{
	  "amount": 0,
	  "currency": "jpy",
	  "source_types": {
		"card": 0
	  }
	}
  ]
}

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

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