How do I use the GCP enum TextAnnotation.Types.DetectedBreak.Types.BreakType
in my python code?
I assume I import it somehow, but do not know how.
It looks like you're linking to the .NET docs, but asking about Python. If you want to use these enums from Python, you'll first need to install the Google Cloud Vision client library from PyPI:
$ pip install google-cloud-vision
Then you can access the enums like this:
>>> from google.cloud import vision
>>> vision.TextAnnotation.DetectedBreak.BreakType
<enum 'BreakType'>