File

projects/wms-framework/src/lib/dataService/FunctionParamInfo.ts

Description

Defines a parameter with name and datatype

Index

Properties

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;
}

result-matching ""

    No results matching ""