class documentation

class ExcludedUsersUpdateError(bb.Union): (source)

View In Hierarchy

Excluded users update error. This class acts as a tagged union. Only one of the ``is_*`` methods will return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. :ivar team.ExcludedUsersUpdateError.users_not_in_team: At least one of the users is not part of your team. :ivar team.ExcludedUsersUpdateError.too_many_users: A maximum of 1000 users for each of addition/removal can be supplied.

Method is_other Check if the union tag is ``other``.
Method is_too_many_users Check if the union tag is ``too_many_users``.
Method is_users_not_in_team Check if the union tag is ``users_not_in_team``.
Class Variable other Undocumented
Class Variable too_many_users Undocumented
Class Variable users_not_in_team Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_other(self): (source)

Check if the union tag is ``other``. :rtype: bool

def is_too_many_users(self): (source)

Check if the union tag is ``too_many_users``. :rtype: bool

def is_users_not_in_team(self): (source)

Check if the union tag is ``users_not_in_team``. :rtype: bool

Undocumented

too_many_users = (source)

Undocumented

users_not_in_team = (source)

Undocumented

def _process_custom_annotations(self, annotation_type, field_path, processor): (source)

Undocumented

_catch_all: str = (source)

Undocumented