Skip to content

Commit 02d2099

Browse files
committed
Remove duplicate ConfigParamDescriptor definition
Signed-off-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
1 parent fcfe71b commit 02d2099

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

tsp-typescript-client/src/models/configuration.ts

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -34,28 +34,3 @@ export interface Configuration {
3434
*/
3535
parameters?: Record<string, any>;
3636
}
37-
38-
/**
39-
* Model of a configuration parameter descriptor
40-
*/
41-
export interface ConfigParamDescriptor {
42-
/**
43-
* The unique name of the key
44-
*/
45-
keyName: string;
46-
47-
/**
48-
* A short description.
49-
*/
50-
description?: string;
51-
52-
/**
53-
* The data type string, e.g. use NUMBER for numbers, or STRING as strings
54-
*/
55-
dataType?: string;
56-
57-
/**
58-
* If parameter needs to in the query parameters or not. Default is false.
59-
*/
60-
isRequired?: boolean;
61-
}

0 commit comments

Comments
 (0)