interface RawTeam {
    icon: null | string;
    id: string;
    members: RawTeamMember[];
    name: string;
    owner_user_id: string;
    payout_account_status?: null | TeamPayoutAccountStatus;
    payout_account_statuses?: TeamPayoutAccount[];
    stripe_connect_account_id?: string;
}

Properties

icon: null | string
id: string
members: RawTeamMember[]
name: string
owner_user_id: string
payout_account_status?: null | TeamPayoutAccountStatus
payout_account_statuses?: TeamPayoutAccount[]
stripe_connect_account_id?: string