MemberListResponseDto: {
    members: {
        activeSpaceCount?: number;
        affiliation?: string | null;
        bio?: string | null;
        createdAt: string;
        displayName: string;
        email: string | null;
        externalMemberCode?: string | null;
        fieldValues: {
            fieldId: string;
            valueDate: string | null;
            valueNumber: number | null;
            valueText: string | null;
        }[];
        id: string;
        inactiveSpaceCount?: number;
        isActive: boolean;
        isIssuedAccount?: boolean;
        lastLoginAt: string | null;
        pictureUrl?: string | null;
        role: {
            key: string;
            name: string;
        };
        userId: string | null;
    }[];
    page: number;
    pageSize: number;
    total: number;
    totalPages: number;
}