adding value attribute for customized output for action
[ccsdk/cds.git] / cds-ui / designer-client / src / app / modules / feature-modules / packages / designer / action-attributes / models / InputActionAttribute.ts
index 5d2c111..82bdb60 100644 (file)
@@ -3,8 +3,17 @@ export class InputActionAttribute {
     description: string;
     type: string;
     required: boolean;
+
+
+    constructor() {
+        this.name = '';
+        this.description = '';
+        this.type = '';
+        this.required = true;
+
+    }
 }
 
 export class OutputActionAttribute extends InputActionAttribute {
-
+    value = '';
 }