projects/wms-framework/src/lib/dataService/FunctionParamInfo.ts
Defines a parameter with name and datatype
Properties |
dataType |
Type : DataServiceDataType
|
Datatype of this parameter |
name |
Type : string
|
Name of the parameter |
import { DataServiceDataType } from './dataServiceEnums';
/**
* Defines a parameter with name and datatype
*
* @export
* @class FunctionParamInfo
*/
export class FunctionParamInfo {
/**
* Name of the parameter
*
* @type {string}
* @memberof FunctionParamInfo
*/
name: string;
/**
* Datatype of this parameter
*
* @type {DataServiceDataType}
* @memberof FunctionParamInfo
*/
dataType: DataServiceDataType;
}