From: Chris Duncan Date: Mon, 24 Jun 2024 08:57:08 +0000 (-0700) Subject: Add variable descriptions to populate help text in Apex Action element. X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=1c41444dd8b3d3479aba876aa1d88c8a9a640ffb;p=flowpex.git Add variable descriptions to populate help text in Apex Action element. --- diff --git a/src/System/Blob/size/System_Blob_size.cls b/src/System/Blob/size/System_Blob_size.cls index e124c3f..2bb07d1 100644 --- a/src/System/Blob/size/System_Blob_size.cls +++ b/src/System/Blob/size/System_Blob_size.cls @@ -22,7 +22,7 @@ global class System_Blob_size { } global class Request { - @InvocableVariable(required='true' label='Blob' description='') + @InvocableVariable(required='true' label='Blob' description='Blob to be sized.') global Blob blobToSize; global Request () {} @@ -32,7 +32,7 @@ global class System_Blob_size { } 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 diff --git a/src/System/Blob/toPdf/System_Blob_toPdf.cls b/src/System/Blob/toPdf/System_Blob_toPdf.cls index 41ddf39..55b3d97 100644 --- a/src/System/Blob/toPdf/System_Blob_toPdf.cls +++ b/src/System/Blob/toPdf/System_Blob_toPdf.cls @@ -24,7 +24,7 @@ global class System_Blob_toPdf { } 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 () {} @@ -34,7 +34,7 @@ global class System_Blob_toPdf { } 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 diff --git a/src/System/Blob/toString/System_Blob_toString.cls b/src/System/Blob/toString/System_Blob_toString.cls index b76ddb8..da00de7 100644 --- a/src/System/Blob/toString/System_Blob_toString.cls +++ b/src/System/Blob/toString/System_Blob_toString.cls @@ -22,7 +22,7 @@ global class System_Blob_toString { } 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 () {} @@ -32,7 +32,7 @@ global class System_Blob_toString { } 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 diff --git a/src/System/Blob/valueOf/System_Blob_valueOf.cls b/src/System/Blob/valueOf/System_Blob_valueOf.cls index 5f46c97..aee8bc4 100644 --- a/src/System/Blob/valueOf/System_Blob_valueOf.cls +++ b/src/System/Blob/valueOf/System_Blob_valueOf.cls @@ -22,7 +22,7 @@ global class System_Blob_valueOf { } 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 () {} @@ -32,7 +32,7 @@ global class System_Blob_valueOf { } 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