Interface IPromptExportDataAnalysisResult
public interface IPromptExportDataAnalysisResult
Result of analyzing a prompt export file.
- Since:
- 8.5.0
-
Method Summary
Modifier and TypeMethodDescriptionGets the type of the prompt export, i.e. whether the data contain a prompt connection or prompt query.Gets the formcycle version used to create the export.getLabel()Gets the label of the prompt export, used e.g. on the UI to show a summary of the contained data.booleanGets whether the export data is encrypted.
-
Method Details
-
getExportType
PromptExportType getExportType()Gets the type of the prompt export, i.e. whether the data contain a prompt connection or prompt query.- Returns:
- The type of prompt object.
-
getFcVersion
String getFcVersion()Gets the formcycle version used to create the export.- Returns:
- The formcycle version, e.g. "8.5.0".
-
getLabel
String getLabel()Gets the label of the prompt export, used e.g. on the UI to show a summary of the contained data.- Returns:
- The label of the prompt export.
-
isEncrypted
boolean isEncrypted()Gets whether the export data is encrypted.- Returns:
- True if the export data is encrypted, false otherwise.
-