@cfxlabsinc/b2b-services
    Preparing search index...

    Interface GetConnectionAccountsResponse

    interface GetConnectionAccountsResponse {
        data: {
            connection: {
                accounts: {
                    balance: { current: number };
                    id: string;
                    kind: string;
                    mask: string;
                    name: string;
                    owners: {
                        addresses: {
                            city: string;
                            country: string;
                            countryCode: string;
                            line1: string;
                            line2: null;
                            line3: null;
                            postalCode: string;
                            region: string;
                            regionCode: string;
                        }[];
                        emails: { address: string }[];
                        id: string;
                        names: {
                            first: null;
                            full: string;
                            last: null;
                            middle: null;
                            prefix: null;
                            suffix: null;
                        }[];
                        phones: { number: string }[];
                    }[];
                    taxonomy: string[];
                    verified: boolean;
                }[];
                id: string;
                institution: { id: string; logo: { url: string }; name: string };
                status: string;
            };
        };
    }
    Index

    Properties

    Properties

    data: {
        connection: {
            accounts: {
                balance: { current: number };
                id: string;
                kind: string;
                mask: string;
                name: string;
                owners: {
                    addresses: {
                        city: string;
                        country: string;
                        countryCode: string;
                        line1: string;
                        line2: null;
                        line3: null;
                        postalCode: string;
                        region: string;
                        regionCode: string;
                    }[];
                    emails: { address: string }[];
                    id: string;
                    names: {
                        first: null;
                        full: string;
                        last: null;
                        middle: null;
                        prefix: null;
                        suffix: null;
                    }[];
                    phones: { number: string }[];
                }[];
                taxonomy: string[];
                verified: boolean;
            }[];
            id: string;
            institution: { id: string; logo: { url: string }; name: string };
            status: string;
        };
    }