We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 024a8cc commit 7268a86Copy full SHA for 7268a86
1 file changed
src/main/java/multichain/object/Create.java
@@ -0,0 +1,32 @@
1
+/*
2
+ * Copyright (C) 2017 Worldline, Inc.
3
+ *
4
+ * MultiChainJavaAPI code distributed under the GPLv3 license, see COPYING file.
5
+ * https://github.com/SimplyUb/MultiChainJavaAPI/blob/master/LICENSE
6
7
+ */
8
+package multichain.object;
9
+
10
+/**
11
+ * @author Ub - H. MARTEAU
12
+ * @version 4.14
13
14
+public class Create extends Stream {
15
+ String type = null;
16
17
+ /**
18
+ * @return the type
19
20
+ public String getType() {
21
+ return type;
22
+ }
23
24
25
+ * @param type the type to set
26
27
+ public void setType(String type) {
28
+ this.type = type;
29
30
31
32
+}
0 commit comments