pub struct FinancialConnectionsAccount {Show 18 fields
pub account_holder: Option<BankConnectionsResourceAccountholder>,
pub balance: Option<BankConnectionsResourceBalance>,
pub balance_refresh: Option<BankConnectionsResourceBalanceRefresh>,
pub category: FinancialConnectionsAccountCategory,
pub created: Timestamp,
pub display_name: Option<String>,
pub id: FinancialConnectionsAccountId,
pub institution_name: String,
pub last4: Option<String>,
pub livemode: bool,
pub ownership: Option<Expandable<FinancialConnectionsAccountOwnership>>,
pub ownership_refresh: Option<BankConnectionsResourceOwnershipRefresh>,
pub permissions: Option<Vec<FinancialConnectionsAccountPermissions>>,
pub status: FinancialConnectionsAccountStatus,
pub subcategory: FinancialConnectionsAccountSubcategory,
pub subscriptions: Option<Vec<FinancialConnectionsAccountSubscriptions>>,
pub supported_payment_method_types: Vec<FinancialConnectionsAccountSupportedPaymentMethodTypes>,
pub transaction_refresh: Option<BankConnectionsResourceTransactionRefresh>,
}Expand description
A Financial Connections Account represents an account that exists outside of Stripe, to which you have been granted some degree of access.
For more details see <https://stripe.com/docs/api/financial_connections/accounts/object>.
Fields§
§account_holder: Option<BankConnectionsResourceAccountholder>The account holder that this account belongs to.
balance: Option<BankConnectionsResourceBalance>The most recent information about the account’s balance.
balance_refresh: Option<BankConnectionsResourceBalanceRefresh>The state of the most recent attempt to refresh the account balance.
category: FinancialConnectionsAccountCategoryThe type of the account. Account category is further divided in subcategory.
created: TimestampTime at which the object was created. Measured in seconds since the Unix epoch.
display_name: Option<String>A human-readable name that has been assigned to this account, either by the account holder or by the institution.
id: FinancialConnectionsAccountIdUnique identifier for the object.
institution_name: StringThe name of the institution that holds this account.
last4: Option<String>The last 4 digits of the account number. If present, this will be 4 numeric characters.
livemode: boolHas the value true if the object exists in live mode or the value false if the object exists in test mode.
ownership: Option<Expandable<FinancialConnectionsAccountOwnership>>The most recent information about the account’s owners.
ownership_refresh: Option<BankConnectionsResourceOwnershipRefresh>The state of the most recent attempt to refresh the account owners.
permissions: Option<Vec<FinancialConnectionsAccountPermissions>>The list of permissions granted by this account.
status: FinancialConnectionsAccountStatusThe status of the link to the account.
subcategory: FinancialConnectionsAccountSubcategoryIf category is cash, one of:
checkingsavingsother
If category is credit, one of:
mortgageline_of_creditcredit_cardother
If category is investment or other, this will be other.
subscriptions: Option<Vec<FinancialConnectionsAccountSubscriptions>>The list of data refresh subscriptions requested on this account.
supported_payment_method_types: Vec<FinancialConnectionsAccountSupportedPaymentMethodTypes>The PaymentMethod type(s) that can be created from this account.
transaction_refresh: Option<BankConnectionsResourceTransactionRefresh>The state of the most recent attempt to refresh the account transactions.
Trait Implementations§
Source§impl Clone for FinancialConnectionsAccount
impl Clone for FinancialConnectionsAccount
Source§fn clone(&self) -> FinancialConnectionsAccount
fn clone(&self) -> FinancialConnectionsAccount
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more