]> git.codecow.com Git - flowpex.git/commitdiff
Add variable descriptions to populate help text in Apex Action element.
authorChris Duncan <chris@flowpex.dev>
Mon, 24 Jun 2024 08:57:08 +0000 (01:57 -0700)
committerChris Duncan <chris@flowpex.dev>
Mon, 24 Jun 2024 08:57:08 +0000 (01:57 -0700)
src/System/Blob/size/System_Blob_size.cls
src/System/Blob/toPdf/System_Blob_toPdf.cls
src/System/Blob/toString/System_Blob_toString.cls
src/System/Blob/valueOf/System_Blob_valueOf.cls

index e124c3f595ef4ef58d6c47fdfb3873ade325b69c..2bb07d16edaca9faf0cf8405298071f81a150be4 100644 (file)
@@ -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
index 41ddf395e6cc8ebfdf631e0de6f624ac56cc9527..55b3d97fcd24842538496ce2105175801bf08967 100644 (file)
@@ -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
index b76ddb836869ba75f7dd43e06cebea2d5f7e00e4..da00de710f10490024d9e0823c044f26d97fcdab 100644 (file)
@@ -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
index 5f46c97af6cbaea9229ff746043b4c7e2b12bd97..aee8bc418a47b4bffffc45330512800269f00906 100644 (file)
@@ -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