File Coverage

lib/Net/API/Stripe/Financial/Connections/AccountOwner.pm
Criterion Covered Total %
statement 7 15 46.6
branch n/a
condition n/a
subroutine 3 11 27.2
pod 8 8 100.0
total 18 34 52.9


line stmt bran cond sub pod time code
1             ##----------------------------------------------------------------------------
2             ## Stripe API - ~/lib/Net/API/Stripe/Financial/Connections/AccountOwner.pm
3             ## Version v0.1.0
4             ## Copyright(c) 2022 DEGUEST Pte. Ltd.
5             ## Author: Jacques Deguest <jack@deguest.jp>
6             ## Created 2022/10/29
7             ## Modified 2022/10/29
8             ##
9             ##----------------------------------------------------------------------------
10             BEGIN
11             {
12             use strict;
13 2     2   24141826 use parent qw( Net::API::Stripe::Generic );
  2         13  
  2         67  
14 2     2   16 our( $VERSION ) = 'v0.1.0';
  2         4  
  2         12  
15 2     2   493 };
16              
17              
18 0     0 1    
19              
20 0     0 1    
21              
22 0     0 1    
23              
24 0     0 1    
25             1;
26 0     0 1   # NOTE: POD
27              
28 0     0 1   =encoding utf8
29              
30 0     0 1   =head1 NAME
31              
32 0     0 1   Net::API::Stripe::Financial::Connections::AccountOwner - The Account Owner object
33              
34             =head1 SYNOPSIS
35              
36             =head1 VERSION
37              
38             v0.1.0
39              
40             =head1 DESCRIPTION
41              
42             Describes a snapshot of the owners of an account at a particular point in time.
43              
44             =head1 METHODS
45              
46             =head2 id string
47              
48             Unique identifier for the object.
49              
50             =head2 object string
51              
52             String representing the object's type. Objects of the same type share the same value.
53              
54             =head2 email string
55              
56             The email address of the owner.
57              
58             =head2 name string
59              
60             The full name of the owner.
61              
62             =head2 ownership string
63              
64             The ownership object that this owner belongs to.
65              
66             =head2 phone string
67              
68             The raw phone number of the owner.
69              
70             =head2 raw_address string
71              
72             The raw physical address of the owner.
73              
74             =head2 refreshed_at timestamp
75              
76             The timestamp of the refresh that updated this owner.
77              
78             =head1 API SAMPLE
79              
80             [
81             {
82             "email" : "nobody+janesmith@stripe.com",
83             "id" : "fcaown_1Le9F42eZvKYlo2CWabVv9DR",
84             "name" : "Jane Smith",
85             "object" : "linked_account_owner",
86             "ownership" : "fcaowns_1Le9F42eZvKYlo2CqGhk2pIp",
87             "phone" : "+1 555-555-5555",
88             "raw_address" : "123 Main Street, Everytown USA",
89             "refreshed_at" : null
90             }
91             ]
92              
93             =head1 HISTORY
94              
95             =head2 v0.1.0
96              
97             Initial version
98              
99             =head1 AUTHOR
100              
101             Jacques Deguest E<lt>F<jack@deguest.jp>E<gt>
102              
103             =head1 SEE ALSO
104              
105             L<Stripe API documentation|https://stripe.com/docs/api/financial_connections/ownership>
106              
107             =head1 COPYRIGHT & LICENSE
108              
109             Copyright (c) 2019-2022 DEGUEST Pte. Ltd.
110              
111             You can use, copy, modify and redistribute this package and associated
112             files under the same terms as Perl itself.
113              
114             =cut