Type Alias $ActiveInvitePayload<ExtArgs>

$ActiveInvitePayload<ExtArgs>: {
    composites: {};
    name: "ActiveInvite";
    objects: {
        team: $TeamPayload<ExtArgs> | null;
    };
    scalars: GetPayloadResult<{
        bitfieldToSet: string;
        code: string;
        currentUses: number;
        dbId: string;
        expiresAt: Date | null;
        maxUses: number | null;
        teamId: string;
    }, ExtArgs["result"]["activeInvite"]>;
}

Type Parameters