class documentation

class BasicAccount(Account): (source)

View In Hierarchy

Basic information about any account. :ivar users.BasicAccount.is_teammate: Whether this user is a teammate of the current user. If this account is the current user's account, then this will be ``True``. :ivar users.BasicAccount.team_member_id: The user's unique team member id. This field will only be present if the user is part of a team and ``is_teammate`` is ``True``.

Method __init__ Undocumented
Class Variable __slots__ Undocumented
Instance Variable is_teammate Undocumented
Instance Variable team_member_id Undocumented
Method _process_custom_annotations Undocumented
Class Variable _has_required_fields Undocumented
Instance Variable _is_teammate_value Undocumented
Instance Variable _team_member_id_value Undocumented

Inherited from Account:

Instance Variable account_id Undocumented
Instance Variable disabled Undocumented
Instance Variable email Undocumented
Instance Variable email_verified Undocumented
Instance Variable name Undocumented
Instance Variable profile_photo_url Undocumented
Instance Variable _account_id_value Undocumented
Instance Variable _disabled_value Undocumented
Instance Variable _email_value Undocumented
Instance Variable _email_verified_value Undocumented
Instance Variable _name_value Undocumented
Instance Variable _profile_photo_url_value Undocumented
def __init__(self, account_id=None, name=None, email=None, email_verified=None, disabled=None, is_teammate=None, profile_photo_url=None, team_member_id=None): (source)

Undocumented

__slots__: list[str] = (source)

Undocumented

is_teammate = (source)

Undocumented

team_member_id = (source)

Undocumented

def _process_custom_annotations(self, annotation_type, field_path, processor): (source)
_has_required_fields: bool = (source)
_is_teammate_value = (source)

Undocumented

_team_member_id_value = (source)

Undocumented