class documentation

class PaperDocCreateError(PaperApiBaseError): (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.PaperDocCreateError.content_malformed: The provided content was malformed and cannot be imported to Paper. :ivar paper.PaperDocCreateError.folder_not_found: The specified Paper folder is cannot be found. :ivar paper.PaperDocCreateError.doc_length_exceeded: The newly created Paper doc would be too large. Please split the content into multiple docs. :ivar paper.PaperDocCreateError.image_size_exceeded: The imported document contains an image that is too large. The current limit is 1MB. This only applies to HTML with data URI.

Method is_content_malformed Check if the union tag is ``content_malformed``.
Method is_doc_length_exceeded Check if the union tag is ``doc_length_exceeded``.
Method is_folder_not_found Check if the union tag is ``folder_not_found``.
Method is_image_size_exceeded Check if the union tag is ``image_size_exceeded``.
Class Variable content_malformed Undocumented
Class Variable doc_length_exceeded Undocumented
Class Variable folder_not_found Undocumented
Class Variable image_size_exceeded Undocumented
Method _process_custom_annotations Undocumented

Inherited from PaperApiBaseError:

Method is_insufficient_permissions Check if the union tag is ``insufficient_permissions``.
Method is_other Check if the union tag is ``other``.
Class Variable insufficient_permissions Undocumented
Class Variable other Undocumented
Class Variable _catch_all Undocumented
def is_content_malformed(self): (source)

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

def is_doc_length_exceeded(self): (source)

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

def is_folder_not_found(self): (source)

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

def is_image_size_exceeded(self): (source)

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

content_malformed = (source)

Undocumented

doc_length_exceeded = (source)

Undocumented

folder_not_found = (source)

Undocumented

image_size_exceeded = (source)

Undocumented

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