repo
stringclasses
1k values
file_url
stringlengths
96
373
file_path
stringlengths
11
294
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
6 values
commit_sha
stringclasses
1k values
retrieved_at
stringdate
2026-01-04 14:45:56
2026-01-04 18:30:23
truncated
bool
2 classes
JsonChao/Awesome-Algorithm-Study
https://github.com/JsonChao/Awesome-Algorithm-Study/blob/f1c886eabf744b69e72a0b0a64b348032b439037/data_struct_study/src/binary_search_tree_problem/Solution129.java
data_struct_study/src/binary_search_tree_problem/Solution129.java
package binary_search_tree_problem; /** * 129 */ public class Solution129 { }
java
Apache-2.0
f1c886eabf744b69e72a0b0a64b348032b439037
2026-01-05T02:39:40.141219Z
false
JsonChao/Awesome-Algorithm-Study
https://github.com/JsonChao/Awesome-Algorithm-Study/blob/f1c886eabf744b69e72a0b0a64b348032b439037/data_struct_study/src/binary_search_tree_problem/Solution404.java
data_struct_study/src/binary_search_tree_problem/Solution404.java
package binary_search_tree_problem; public class Solution404 { public static class TreeNode { int val; TreeNode left; TreeNode right; TreeNode(int x) { val = x; } } public int sumOfLeftLeaves(TreeNode root) { if (root == null) { return 0; } ...
java
Apache-2.0
f1c886eabf744b69e72a0b0a64b348032b439037
2026-01-05T02:39:40.141219Z
false
JsonChao/Awesome-Algorithm-Study
https://github.com/JsonChao/Awesome-Algorithm-Study/blob/f1c886eabf744b69e72a0b0a64b348032b439037/data_struct_study/src/set/Solution2.java
data_struct_study/src/set/Solution2.java
package set; import java.util.ArrayList; import java.util.TreeSet; /** * Leetcode 349. Intersection of Two Arrays * https://leetcode.com/problems/intersection-of-two-arrays/description/ */ class Solution2 { public int[] intersection(int[] nums1, int[] nums2) { TreeSet<Integer> set = new TreeSet<>(); ...
java
Apache-2.0
f1c886eabf744b69e72a0b0a64b348032b439037
2026-01-05T02:39:40.141219Z
false
JsonChao/Awesome-Algorithm-Study
https://github.com/JsonChao/Awesome-Algorithm-Study/blob/f1c886eabf744b69e72a0b0a64b348032b439037/data_struct_study/src/set/Solution1.java
data_struct_study/src/set/Solution1.java
package set; import java.util.TreeSet; /** * Leetcode 804. Unique Morse Code Words * https://leetcode.com/problems/unique-morse-code-words/description/ * * 有序集合中的元素具有顺序性:基于搜索树的实现。 * 无序集合中的元素没有顺序性:基于哈希表的实现。 * 多重集合:集合中的元素可以重复,可以在允许重复的二叉搜索树上包装一层即可实现。 * */ public class Solution1 { public int uniqueMorseRepr...
java
Apache-2.0
f1c886eabf744b69e72a0b0a64b348032b439037
2026-01-05T02:39:40.141219Z
false
JsonChao/Awesome-Algorithm-Study
https://github.com/JsonChao/Awesome-Algorithm-Study/blob/f1c886eabf744b69e72a0b0a64b348032b439037/data_struct_study/src/set/FileOperation.java
data_struct_study/src/set/FileOperation.java
package set; import java.io.BufferedInputStream; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.util.ArrayList; import java.util.Locale; import java.util.Scanner; // 文件相关操作 public class FileOperation { // 读取文件名称为filename中的内容,并将其中包含的所有词语放进words中 public static bool...
java
Apache-2.0
f1c886eabf744b69e72a0b0a64b348032b439037
2026-01-05T02:39:40.141219Z
false
JsonChao/Awesome-Algorithm-Study
https://github.com/JsonChao/Awesome-Algorithm-Study/blob/f1c886eabf744b69e72a0b0a64b348032b439037/data_struct_study/src/set/Main2.java
data_struct_study/src/set/Main2.java
package set; import java.util.ArrayList; public class Main2 { private static double testSet(Set<String> set, String filename){ long startTime = System.nanoTime(); System.out.println(filename); ArrayList<String> words = new ArrayList<>(); if(FileOperation.readFile(filename, words...
java
Apache-2.0
f1c886eabf744b69e72a0b0a64b348032b439037
2026-01-05T02:39:40.141219Z
false
JsonChao/Awesome-Algorithm-Study
https://github.com/JsonChao/Awesome-Algorithm-Study/blob/f1c886eabf744b69e72a0b0a64b348032b439037/data_struct_study/src/set/Set.java
data_struct_study/src/set/Set.java
package set; public interface Set<E> { void add(E e); void remove(E e); boolean isContains(E e); int getSize(); boolean isEmpty(); }
java
Apache-2.0
f1c886eabf744b69e72a0b0a64b348032b439037
2026-01-05T02:39:40.141219Z
false
JsonChao/Awesome-Algorithm-Study
https://github.com/JsonChao/Awesome-Algorithm-Study/blob/f1c886eabf744b69e72a0b0a64b348032b439037/data_struct_study/src/set/BSTSet.java
data_struct_study/src/set/BSTSet.java
package set; import binary_search_tree.BST; public class BSTSet<E extends Comparable<E>> implements Set<E> { private final BST<E> bst; public BSTSet() { bst = new BST<>(); } @Override public void add(E e) { bst.add(e); } @Override public void remove(E e) { b...
java
Apache-2.0
f1c886eabf744b69e72a0b0a64b348032b439037
2026-01-05T02:39:40.141219Z
false
JsonChao/Awesome-Algorithm-Study
https://github.com/JsonChao/Awesome-Algorithm-Study/blob/f1c886eabf744b69e72a0b0a64b348032b439037/data_struct_study/src/set/LinkedListSet.java
data_struct_study/src/set/LinkedListSet.java
package set; import LinkedList.LinkedList; import java.util.ArrayList; /** * BST 和 LinkedList 都属于动态数据结构 * * BSTSet 和 LinkedListSet 时间复杂度对比(h 为二分搜索树的高度) * * LinkedListSet BSTSet 最优 平均 最差(二分搜索树退化为线性链表时) * 增 add O(n) O(h) O(logn) O(logn) O(n) * 查 isC...
java
Apache-2.0
f1c886eabf744b69e72a0b0a64b348032b439037
2026-01-05T02:39:40.141219Z
false
JsonChao/Awesome-Algorithm-Study
https://github.com/JsonChao/Awesome-Algorithm-Study/blob/f1c886eabf744b69e72a0b0a64b348032b439037/data_struct_study/src/set/Main1.java
data_struct_study/src/set/Main1.java
package set; import java.util.ArrayList; public class Main1 { public static void main(String[] args) { ArrayList<String> words1 = new ArrayList<>(); System.out.println("pride-and-prejudice"); if (FileOperation.readFile("pride-and-prejudice.txt", words1)) { System.out.printl...
java
Apache-2.0
f1c886eabf744b69e72a0b0a64b348032b439037
2026-01-05T02:39:40.141219Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-springboot-example/src/main/java/com/example/ApplicationExample.java
conversational-skills/procode-skill-springboot-example/src/main/java/com/example/ApplicationExample.java
package com.example; import com.example.bluepoints.BluePointsSkill; import com.ibm.watson.conversationalskills.model.*; import com.ibm.watson.conversationalskills.sdk.Skill; import com.ibm.watson.conversationalskills.sdk.SkillOrchestrator; import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annota...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/BluePointsSkill.java
conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/BluePointsSkill.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/slot_handlers/AmountSlotHandler.java
conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/slot_handlers/AmountSlotHandler.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/slot_handlers/ReceiverCommentSlotHandler.java
conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/slot_handlers/ReceiverCommentSlotHandler.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/slot_handlers/RecipientSelectorSlotHandler.java
conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/slot_handlers/RecipientSelectorSlotHandler.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/slot_handlers/RecipientSlotHandler.java
conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/slot_handlers/RecipientSlotHandler.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/i18n/BluePointsSkillResource_en_US.java
conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/i18n/BluePointsSkillResource_en_US.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/i18n/BluePointsSkillResource_de_DE.java
conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/i18n/BluePointsSkillResource_de_DE.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/i18n/BluePointsSkillResource.java
conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/i18n/BluePointsSkillResource.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/data/User.java
conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/data/User.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/qualifiers/Amount.java
conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/qualifiers/Amount.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/qualifiers/Recipient.java
conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/qualifiers/Recipient.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/qualifiers/ReceiverComment.java
conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/qualifiers/ReceiverComment.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/qualifiers/RecipientSelector.java
conversational-skills/procode-skill-springboot-example/src/main/java/com/example/bluepoints/qualifiers/RecipientSelector.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/test/java/com/ibm/watson/conversationalskills/sdk/SlotHandlerTest.java
conversational-skills/procode-skill-sdk-java/src/test/java/com/ibm/watson/conversationalskills/sdk/SlotHandlerTest.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/test/java/com/ibm/watson/conversationalskills/sdk/SkillOrchestratorTest.java
conversational-skills/procode-skill-sdk-java/src/test/java/com/ibm/watson/conversationalskills/sdk/SkillOrchestratorTest.java
package com.ibm.watson.conversationalskills.sdk; import com.ibm.watson.conversationalskills.model.*; import com.ibm.watson.conversationalskills.sdk.utils.BluePointsSkill; import org.junit.jupiter.api.Test; import java.util.*; import static org.junit.jupiter.api.Assertions.assertEquals; public class SkillOrchestrato...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/test/java/com/ibm/watson/conversationalskills/sdk/SkillTest.java
conversational-skills/procode-skill-sdk-java/src/test/java/com/ibm/watson/conversationalskills/sdk/SkillTest.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/test/java/com/ibm/watson/conversationalskills/sdk/utils/BluePointsSkill.java
conversational-skills/procode-skill-sdk-java/src/test/java/com/ibm/watson/conversationalskills/sdk/utils/BluePointsSkill.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/test/java/com/ibm/watson/conversationalskills/sdk/utils/AmountSlotHandler.java
conversational-skills/procode-skill-sdk-java/src/test/java/com/ibm/watson/conversationalskills/sdk/utils/AmountSlotHandler.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/test/java/com/ibm/watson/conversationalskills/sdk/utils/BluePointsSkillResource_en_US.java
conversational-skills/procode-skill-sdk-java/src/test/java/com/ibm/watson/conversationalskills/sdk/utils/BluePointsSkillResource_en_US.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeOption.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeOption.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeAudio.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeAudio.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkillInputSlot.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkillInputSlot.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/OrchestrationResponse.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/OrchestrationResponse.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeConnectToAgent.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeConnectToAgent.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/EntitySchema.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/EntitySchema.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageContext.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageContext.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkillActiveDetails.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkillActiveDetails.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeDate.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeDate.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeSearch.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeSearch.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeSuggestion.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeSuggestion.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/GetSkillResponse.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/GetSkillResponse.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/DialogNodeOutputOptionsElement.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/DialogNodeOutputOptionsElement.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageContextActionSkill.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageContextActionSkill.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeVideo.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeVideo.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeConnectToAgentAgentUnavailable.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeConnectToAgentAgentUnavailable.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/DialogSuggestionValue.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/DialogSuggestionValue.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SearchResultHighlight.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SearchResultHighlight.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageContextSkillSystem.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageContextSkillSystem.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkillStateOutput.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkillStateOutput.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkillActionRegistration.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkillActionRegistration.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/BaseMessageContextSkill.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/BaseMessageContextSkill.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/GetSkillResponseAllOfInput.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/GetSkillResponseAllOfInput.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ChannelTransferTargetChat.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ChannelTransferTargetChat.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SlotValue.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SlotValue.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkillAction.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkillAction.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypePause.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypePause.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/EntityValue.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/EntityValue.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageContextGlobal.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageContextGlobal.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageInput.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageInput.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageContextDialogSkill.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageContextDialogSkill.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SessionHistoryMessage.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SessionHistoryMessage.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SlotInFlight.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SlotInFlight.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/OrchestrationRequest.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/OrchestrationRequest.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ListSkillsResponse.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ListSkillsResponse.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkillOutput.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkillOutput.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeIframe.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeIframe.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeChannelTransfer.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeChannelTransfer.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SlotState.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SlotState.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageContextSkills.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageContextSkills.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/BaseMessageContextGlobal.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/BaseMessageContextGlobal.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkillStateInput.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkillStateInput.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/AgentAvailabilityMessage.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/AgentAvailabilityMessage.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SearchResultMetadata.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SearchResultMetadata.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SlotValueNormalized.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SlotValueNormalized.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ChannelTransferTarget.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ChannelTransferTarget.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageContextConversationalSkills.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageContextConversationalSkills.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/OrchestrationResponseResolver.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/OrchestrationResponseResolver.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/DialogNodeOutputConnectToAgentTransferInfo.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/DialogNodeOutputConnectToAgentTransferInfo.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ResponseTypeSlotsConfirmation.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ResponseTypeSlotsConfirmation.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SearchResultAnswer.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SearchResultAnswer.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/BaseSlot.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/BaseSlot.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkillActionSource.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkillActionSource.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ResponseGenericChannel.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ResponseGenericChannel.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ErrorResponse.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ErrorResponse.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ErrorDetail.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ErrorDetail.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageContextGlobalSystem.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageContextGlobalSystem.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/DialogSuggestion.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/DialogSuggestion.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalResponseGeneric.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalResponseGeneric.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
true
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkill.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ConversationalSkill.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageInputAttachment.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/MessageInputAttachment.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ResponseTypeSlots.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ResponseTypeSlots.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeConnectToAgentAgentAvailable.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeConnectToAgentAgentAvailable.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ChannelTransferInfo.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/ChannelTransferInfo.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/DialogNodeOutputOptionsElementValue.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/DialogNodeOutputOptionsElementValue.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeImage.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeImage.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeUserDefined.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeUserDefined.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseGeneric.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseGeneric.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeText.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/RuntimeResponseTypeText.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false
watson-developer-cloud/assistant-toolkit
https://github.com/watson-developer-cloud/assistant-toolkit/blob/fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d/conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SearchResult.java
conversational-skills/procode-skill-sdk-java/src/main/java/com/ibm/watson/conversationalskills/model/SearchResult.java
/* Copyright 2024 IBM Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, ...
java
Apache-2.0
fa94bf4401b596dc6e5db7ea0e74e8c18fd9a32d
2026-01-05T02:37:53.151031Z
false