NAME
Net::API::Stripe::CustomField - A Stripe Custom Field Object
SYNOPSIS
my $customs = $stripe->invoice->custom_fields([
{
name => 'some name',
value => 'some value,
},
{
name => 'other name',
value => 'other value,
},
]);
VERSION
v0.100.0
DESCRIPTION
This defines the custom fields showing on an invoice and is referred to by Stripe as invoice_settings
It is used by Net::API::Stripe::Billing::Invoice, Net::API::Stripe::Customer::TaxIds, and Net::API::Stripe::Customer
CONSTRUCTOR
new( %ARG )
Creates a new Net::API::Stripe::CustomField object. It may also take an hash like arguments, that also are method of the same name.
METHODS
name string
The name of the custom field.
value string
The value of the custom field.
API SAMPLE
No sample data found yet
HISTORY
v0.1
Initial version
AUTHOR
Jacques Deguest <jack@deguest.jp>
SEE ALSO
Stripe API documentation:
https://stripe.com/docs/api/invoices/object
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.