File Coverage

lib/Net/API/Stripe/CustomField.pm
Criterion Covered Total %
statement 19 21 90.4
branch n/a
condition n/a
subroutine 7 9 77.7
pod 2 2 100.0
total 28 32 87.5


line stmt bran cond sub pod time code
1             ##----------------------------------------------------------------------------
2             ## Stripe API - ~/lib/Net/API/Stripe/CustomField.pm
3             ## Version v0.100.0
4             ## Copyright(c) 2019 DEGUEST Pte. Ltd.
5             ## Author: Jacques Deguest <jack@deguest.jp>
6             ## Created 2019/11/02
7             ## Modified 2020/05/15
8             ##
9             ##----------------------------------------------------------------------------
10             BEGIN
11             {
12             use strict;
13 1     1   950 use warnings;
  1         3  
  1         29  
14 1     1   5 use parent qw( Net::API::Stripe::Generic );
  1         3  
  1         28  
15 1     1   5 use vars qw( $VERSION );
  1         2  
  1         5  
16 1     1   64 our( $VERSION ) = 'v0.100.0';
  1         2  
  1         46  
17 1     1   18 };
18              
19             use strict;
20 1     1   5 use warnings;
  1         3  
  1         18  
21 1     1   5  
  1         2  
  1         79  
22              
23 0     0 1    
24             1;
25 0     0 1    
26              
27             =encoding utf8
28              
29             =head1 NAME
30              
31             Net::API::Stripe::CustomField - A Stripe Custom Field Object
32              
33             =head1 SYNOPSIS
34              
35             my $customs = $stripe->invoice->custom_fields([
36             {
37             name => 'some name',
38             value => 'some value,
39             },
40             {
41             name => 'other name',
42             value => 'other value,
43             },
44             ]);
45              
46             =head1 VERSION
47              
48             v0.100.0
49              
50             =head1 DESCRIPTION
51              
52             This defines the custom fields showing on an invoice and is referred to by Stripe as C<invoice_settings>
53              
54             It is used by L<Net::API::Stripe::Billing::Invoice>, L<Net::API::Stripe::Customer::TaxIds>, and L<Net::API::Stripe::Customer>
55              
56             =head1 CONSTRUCTOR
57              
58             =head2 new( %ARG )
59              
60             Creates a new L<Net::API::Stripe::CustomField> object.
61             It may also take an hash like arguments, that also are method of the same name.
62              
63             =head1 METHODS
64              
65             =head2 name string
66              
67             The name of the custom field.
68              
69             =head2 value string
70              
71             The value of the custom field.
72              
73             =head1 API SAMPLE
74              
75             No sample data found yet
76              
77             =head1 HISTORY
78              
79             =head2 v0.1
80              
81             Initial version
82              
83             =head1 AUTHOR
84              
85             Jacques Deguest E<lt>F<jack@deguest.jp>E<gt>
86              
87             =head1 SEE ALSO
88              
89             Stripe API documentation:
90              
91             L<https://stripe.com/docs/api/invoices/object>
92              
93             =head1 COPYRIGHT & LICENSE
94              
95             Copyright (c) 2019-2020 DEGUEST Pte. Ltd.
96              
97             You can use, copy, modify and redistribute this package and associated
98             files under the same terms as Perl itself.
99              
100             =cut