I have a business requirement where my front-end mule passes me "an array containing a maximum of 10 rows, with each row containing a name and a image byte stream"
I researched and found we can create variables like below:
Byte[] m = new Byte[9]
String name = string.empty;
I want something like:
Input[9,9] g = new Input[9,9];
My data for g looks like:
g = {{ hehhdh0474637, test1}, { gsgsgh376,test2}... upto 9}
I’m a business analyst but doing some coding to meet my company's software requirements, so apologies if it’s a silly question -- but that’s what I want to achieve
each row containing a name and a image byte streammeans an object with 2 properties, one for a name as a string and one is a byte array?