github.com/stripe/stripe-go/v76@v76.25.0/financialconnections_accountowner.go (about)

     1  //
     2  //
     3  // File generated from our OpenAPI spec
     4  //
     5  //
     6  
     7  package stripe
     8  
     9  // Describes an owner of an account.
    10  type FinancialConnectionsAccountOwner struct {
    11  	// The email address of the owner.
    12  	Email string `json:"email"`
    13  	// Unique identifier for the object.
    14  	ID string `json:"id"`
    15  	// The full name of the owner.
    16  	Name string `json:"name"`
    17  	// String representing the object's type. Objects of the same type share the same value.
    18  	Object string `json:"object"`
    19  	// The ownership object that this owner belongs to.
    20  	Ownership string `json:"ownership"`
    21  	// The raw phone number of the owner.
    22  	Phone string `json:"phone"`
    23  	// The raw physical address of the owner.
    24  	RawAddress string `json:"raw_address"`
    25  	// The timestamp of the refresh that updated this owner.
    26  	RefreshedAt int64 `json:"refreshed_at"`
    27  }
    28  
    29  // FinancialConnectionsAccountOwnerList is a list of AccountOwners as retrieved from a list endpoint.
    30  type FinancialConnectionsAccountOwnerList struct {
    31  	APIResource
    32  	ListMeta
    33  	Data []*FinancialConnectionsAccountOwner `json:"data"`
    34  }