I am running a document understanding which is extracting both Passport and ID card data. The extraction runs perflectly using the ML extractors but once I get to the end of the process I want to store the two different typres of documents in two different locations.
My plan is to do an If something like
If validatedClassificationResults = Passport
then do passport stuff
Else
do ID stuff
How would I access the value within my validatedClassificationResults variable (output from present classification station) to allow me to perform the sort of logic above?