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

NAME

Net::API::Stripe::Payment::Installment - A Stripe Instalment Payment Object

SYNOPSIS

    my $inst = $stripe->card->installments({
        plan => $plan_object,
    });

VERSION

    v0.101.0

DESCRIPTION

Installment details for this payment (Mexico only).

For more information, see the installments integration guide (https://stripe.com/docs/payments/installments).

This is instantiated by method installments in module Net::API::Stripe::Connect::ExternalAccount::Card

CONSTRUCTOR

new

Creates a new Net::API::Stripe::Payment::Installment object. It may also take an hash like arguments, that also are method of the same name.

METHODS

available_plans array of objects

Installment plans that may be selected for this PaymentIntent.

This is a Net::API::Stripe::Billing::Plan object.

enabled boolean

Whether Installments are enabled for this PaymentIntent.

plan hash

This is a Net::API::Stripe::Billing::Plan; object who only 3 following properties are used:

count integer

For fixed_count installment plans, this is the number of installment payments your customer will make to their credit card.

interval string

For fixed_count installment plans, this is the interval between installment payments your customer will make to their credit card.

type string

Type of installment plan, one of fixed_count.

HISTORY

v0.1

Initial version

AUTHOR

Jacques Deguest <jack@deguest.jp>

SEE ALSO

Stripe API documentation:

https://stripe.com/docs/payments/installments

Payment intent, instalment property

COPYRIGHT & LICENSE

Copyright (c) 2019-2020 DEGUEST Pte. Ltd.

You can use, copy, modify and redistribute this package and associated files under the same terms as Perl itself.