I want to create a rest endpoint using which I can upload multi part data i.e images and text etc to Google cloud storage. I have a code which can store a byte Array to file in Google cloud storage but I could configure my endpoint.
After looking at the Google app engine Java sdk docs, I found several @named parameters like int, string etc but could not find File parameter which can be used to upload multi part data.
So my exact question, whether I can create an API endpoints by @API annotations using which I can directly process my multi part data or not?