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