class documentation

class ListPaperDocsSortBy(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 paper.ListPaperDocsSortBy.accessed: Sorts the Paper docs by the time they were last accessed. :ivar paper.ListPaperDocsSortBy.modified: Sorts the Paper docs by the time they were last modified. :ivar paper.ListPaperDocsSortBy.created: Sorts the Paper docs by the creation time.

Method is_accessed Check if the union tag is ``accessed``.
Method is_created Check if the union tag is ``created``.
Method is_modified Check if the union tag is ``modified``.
Method is_other Check if the union tag is ``other``.
Class Variable accessed Undocumented
Class Variable created Undocumented
Class Variable modified Undocumented
Class Variable other Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_accessed(self): (source)

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

def is_created(self): (source)

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

def is_modified(self): (source)

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

def is_other(self): (source)

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

accessed = (source)

Undocumented

Undocumented

modified = (source)

Undocumented

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented