class documentation

class RevokeSharedLinkError(SharedLinkError): (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 sharing.RevokeSharedLinkError.shared_link_malformed: Shared link is malformed.

Method is_shared_link_malformed Check if the union tag is ``shared_link_malformed``.
Class Variable shared_link_malformed Undocumented
Method _process_custom_annotations Undocumented

Inherited from SharedLinkError:

Method is_other Check if the union tag is ``other``.
Method is_shared_link_access_denied Check if the union tag is ``shared_link_access_denied``.
Method is_shared_link_not_found Check if the union tag is ``shared_link_not_found``.
Method is_unsupported_link_type Check if the union tag is ``unsupported_link_type``.
Class Variable other Undocumented
Class Variable shared_link_access_denied Undocumented
Class Variable shared_link_not_found Undocumented
Class Variable unsupported_link_type Undocumented
Class Variable _catch_all Undocumented
def is_shared_link_malformed(self): (source)

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

shared_link_malformed = (source)

Undocumented

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