class documentation

class TwoStepVerificationPolicy(bb.Union): (source)

View In Hierarchy

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_policies.TwoStepVerificationPolicy.require_tfa_enable: Enabled require two factor authorization. :ivar team_policies.TwoStepVerificationPolicy.require_tfa_disable: Disabled require two factor authorization.

Method is_other Check if the union tag is ``other``.
Method is_require_tfa_disable Check if the union tag is ``require_tfa_disable``.
Method is_require_tfa_enable Check if the union tag is ``require_tfa_enable``.
Class Variable other Undocumented
Class Variable require_tfa_disable Undocumented
Class Variable require_tfa_enable 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_require_tfa_disable(self): (source)

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

def is_require_tfa_enable(self): (source)

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

Undocumented

require_tfa_disable = (source)

Undocumented

require_tfa_enable = (source)

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented