Source code for mautrix.client.api.types.users

# Copyright (c) 2018 Tulir Asokan
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from typing import List, NamedTuple
from attr import dataclass

from .event import Membership
from .primitive import UserID, ContentURI
from .util import SerializableAttrs


[docs]@dataclass class Member(SerializableAttrs['Member']): membership: Membership = None avatar_url: ContentURI = None displayname: str = None
[docs]@dataclass class User(SerializableAttrs['User']): user_id: UserID avatar_url: ContentURI = None displayname: str = None
UserSearchResults = NamedTuple("UserSearchResults", results=List[User], limit=int)