}
global class Request {
- @InvocableVariable(required='true' label='Blob' description='')
+ @InvocableVariable(required='true' label='Blob' description='Blob to be sized.')
global Blob blobToSize;
global Request () {}
}
global class Response {
- @InvocableVariable(label='Size' description='')
+ @InvocableVariable(label='Size' description='Number of characters in the Blob.')
global Integer sizeOfBlob;
}
}
\ No newline at end of file
}
global class Request {
- @InvocableVariable(required='true' label='String to PDF' description='')
+ @InvocableVariable(required='true' label='String' description='String to encode as a PDF file.')
global String stringToPdf;
global Request () {}
}
global class Response {
- @InvocableVariable(label='PDF' description='')
+ @InvocableVariable(label='PDF' description='PDF file created from a String.')
global Blob pdfOfString;
}
}
\ No newline at end of file
}
global class Request {
- @InvocableVariable(required='true' label='Blob' description='')
+ @InvocableVariable(required='true' label='Blob' description='Blob to be cast into a String.')
global Blob blobToString;
global Request () {}
}
global class Response {
- @InvocableVariable(label='String' description='')
+ @InvocableVariable(label='String' description='String that was cast from a Blob.')
global String stringOfBlob;
}
}
\ No newline at end of file
}
global class Request {
- @InvocableVariable(required='true' label='String to blob' description='')
+ @InvocableVariable(required='true' label='String' description='String to be cast into a Blob.')
global String stringToBlob;
global Request () {}
}
global class Response {
- @InvocableVariable(label='Blob' description='')
+ @InvocableVariable(label='Blob' description='Blob that was cast from a String.')
global Blob blobOfString;
}
}
\ No newline at end of file