Beispiel #1
0
        public IntentExport GetIntent(string workspaceId, string intent, bool?export = null)
        {
            try
            {
                var result = AssistantRepository.GetIntent(workspaceId, intent, export);

                return(result);
            }
            catch (Exception ex)
            {
                Logger.Error("AssistantService.GetIntent failed", this, ex);
            }

            return(null);
        }