async-stripe 0.41.0

API bindings for the Stripe HTTP API
Documentation
// ======================================
// This file was automatically generated.
// ======================================

use crate::ids::{FinancialConnectionsAccountOwnershipId};
use crate::params::{List, Object, Timestamp};
use crate::resources::{FinancialConnectionsAccountOwner};
use serde::{Deserialize, Serialize};

/// The resource representing a Stripe "BankConnectionsResourceOwnership".
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
pub struct FinancialConnectionsAccountOwnership {
    /// Unique identifier for the object.
    pub id: FinancialConnectionsAccountOwnershipId,

    /// Time at which the object was created.
    ///
    /// Measured in seconds since the Unix epoch.
    pub created: Timestamp,

    /// A paginated list of owners for this account.
    pub owners: List<FinancialConnectionsAccountOwner>,
}

impl Object for FinancialConnectionsAccountOwnership {
    type Id = FinancialConnectionsAccountOwnershipId;
    fn id(&self) -> Self::Id {
        self.id.clone()
    }
    fn object(&self) -> &'static str {
        "financial_connections.account_ownership"
    }
}