class documentation

class SetCustomQuotaError(CustomQuotaError): (source)

View In Hierarchy

Error returned when setting member custom quota. 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.SetCustomQuotaError.some_users_are_excluded: Some of the users are on the excluded users list and can't have custom quota set.

Method is_some_users_are_excluded Check if the union tag is ``some_users_are_excluded``.
Class Variable some_users_are_excluded Undocumented
Method _process_custom_annotations Undocumented

Inherited from CustomQuotaError:

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

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

some_users_are_excluded = (source)

Undocumented

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