Type Alias SpaceInviteListResponseDto

SpaceInviteListResponseDto: {
    codes: {
        code: string;
        createdAt: string;
        enabled: boolean;
        expiresAt: string | null;
        id: string;
        link: string;
        password: string | null;
        role: "ADMIN" | "PARTICIPANT";
    }[];
}