NAME

Net::API::Stripe::Balance::Transaction::FeeDetails - A Stripe Fee Details Objects

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

Amount of the fee, in cents.

application string
currency currency

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

description string

An arbitrary string attached to the object. Often useful for displaying to users.

type string

Type of the fee, one of: application_fee, stripe_fee or tax.

API SAMPLE

{
  "id": "txn_1FTlZvCeyNCl6fY2qIteNrPe",
  "object": "balance_transaction",
  "amount": 8000,
  "available_on": 1571443200,
  "created": 1571128827,
  "currency": "jpy",
  "description": "Invoice 409CD54-0039",
  "exchange_rate": null,
  "fee": 288,
  "fee_details": [
	{
	  "amount": 288,
	  "application": null,
	  "currency": "jpy",
	  "description": "Stripe processing fees",
	  "type": "stripe_fee"
	}
  ],
  "net": 7712,
  "source": "ch_1FTlZvCeyNCl6fY2YAZ8thLx",
  "status": "pending",
  "type": "charge"
}

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

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