File Coverage

lib/Net/API/Stripe/Financial/Connections/AccountOwnership.pm
Criterion Covered Total %
statement 7 11 63.6
branch n/a
condition n/a
subroutine 3 7 42.8
pod 4 4 100.0
total 14 22 63.6


line stmt bran cond sub pod time code
1             ##----------------------------------------------------------------------------
2             ## Stripe API - ~/lib/Net/API/Stripe/Financial/Connections/AccountOwnership.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   24092838 use parent qw( Net::API::Stripe::Generic );
  2         13  
  2         70  
14 2     2   10 our( $VERSION ) = 'v0.1.0';
  2         3  
  2         12  
15 2     2   356 };
16              
17              
18 0     0 1    
19              
20 0     0 1    
21             1;
22 0     0 1   # NOTE: POD
23              
24 0     0 1   =encoding utf8
25              
26             =head1 NAME
27              
28             Net::API::Stripe::Financial::Connections::AccountOwnership - The Account Ownership object
29              
30             =head1 SYNOPSIS
31              
32             =head1 VERSION
33              
34             v0.1.0
35              
36             =head1 DESCRIPTION
37              
38             Describes a snapshot of the owners of an account at a particular point in time.
39              
40             =head1 METHODS
41              
42             =head2 id string
43              
44             Unique identifier for the object.
45              
46             =head2 object string
47              
48             String representing the object's type. Objects of the same type share the same value.
49              
50             =head2 created timestamp
51              
52             Time at which the object was created. Measured in seconds since the Unix epoch.
53              
54             =head2 owners object
55              
56             A paginated list of owners for this account.
57              
58             This is a L<Net::API::Stripe::List> object.
59              
60             =head1 API SAMPLE
61              
62             [
63             {
64             "created" : "1662261086",
65             "id" : "fcaowns_1Le9F42eZvKYlo2CfwkUGxZt",
66             "object" : "linked_account_ownership",
67             "owners" : {
68             "data" : [],
69             "has_more" : 0,
70             "object" : "list",
71             "url" : "/v1/linked_accounts/fca_1Le9F42eZvKYlo2CEjemQrlf/owners?ownership=fcaowns_1Le9F42eZvKYlo2CfwkUGxZt"
72             }
73             }
74             ]
75              
76             =head1 HISTORY
77              
78             =head2 v0.1.0
79              
80             Initial version
81              
82             =head1 AUTHOR
83              
84             Jacques Deguest E<lt>F<jack@deguest.jp>E<gt>
85              
86             =head1 SEE ALSO
87              
88             L<Stripe API documentation|https://stripe.com/docs/api/financial_connections/ownership>
89              
90             =head1 COPYRIGHT & LICENSE
91              
92             Copyright (c) 2019-2022 DEGUEST Pte. Ltd.
93              
94             You can use, copy, modify and redistribute this package and associated
95             files under the same terms as Perl itself.
96              
97             =cut