class documentation

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 file_properties.InvalidPropertyGroupError.property_field_too_large: One or more of the supplied property field values is too large. :ivar file_properties.InvalidPropertyGroupError.does_not_fit_template: One or more of the supplied property fields does not conform to the template specifications. :ivar file_properties.InvalidPropertyGroupError.duplicate_property_groups: There are 2 or more property groups referring to the same templates in the input.

Method is_does_not_fit_template Check if the union tag is ``does_not_fit_template``.
Method is_duplicate_property_groups Check if the union tag is ``duplicate_property_groups``.
Method is_property_field_too_large Check if the union tag is ``property_field_too_large``.
Class Variable does_not_fit_template Undocumented
Class Variable duplicate_property_groups Undocumented
Class Variable property_field_too_large Undocumented
Method _process_custom_annotations Undocumented

Inherited from PropertiesError:

Class Method path Create an instance of this class set to the ``path`` tag with value ``val``.
Method get_path Only call this if :meth:`is_path` is true.
Method is_path Check if the union tag is ``path``.
Method is_unsupported_folder Check if the union tag is ``unsupported_folder``.
Class Variable unsupported_folder Undocumented

Inherited from TemplateError (via PropertiesError):

Class Method template_not_found Create an instance of this class set to the ``template_not_found`` tag with value ``val``.
Method get_template_not_found Template does not exist for the given identifier.
Method is_other Check if the union tag is ``other``.
Method is_restricted_content Check if the union tag is ``restricted_content``.
Method is_template_not_found Check if the union tag is ``template_not_found``.
Class Variable other Undocumented
Class Variable restricted_content Undocumented
Class Variable _catch_all Undocumented
def is_does_not_fit_template(self): (source)

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

def is_duplicate_property_groups(self): (source)

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

def is_property_field_too_large(self): (source)

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

does_not_fit_template = (source)

Undocumented

duplicate_property_groups = (source)

Undocumented

property_field_too_large = (source)

Undocumented

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