> ISPO SDK documentation. [HTML](https://ispo.ai/docs/types/core.CommunityMemberCurrentResult.html) · [Documentation index](https://ispo.ai/docs/llms.txt)

# Type Alias CommunityMemberCurrentResult

```typescript
CommunityMemberCurrentResult:
    | { kind: "project-owner" }
    | {
        kind: "member";
        membershipId: string;
        profile: CommunityMemberProfileProjection;
        role: "member" | "moderator";
        status: "active" | "suspended" | "revoked";
        version: number;
    }
    | { kind: "signed-out" }
    | { kind: "not-member" }
```

Types: [CommunityMemberProfileProjection](../interfaces/core.Supporting_types.CommunityMemberProfileProjection.md)
