/** * The parameter associated with a company location. * @export * @class LocationParameterModel */ export declare class LocationParameterModel { /** * @type {number} * @memberof LocationParameterModel */ id?: number | undefined; /** * @type {string} * @memberof LocationParameterModel */ name: string; /** * @type {string} * @memberof LocationParameterModel */ unit?: string | undefined; /** * @type {string} * @memberof LocationParameterModel */ value: string; /** * @type {number} * @memberof LocationParameterModel */ locationId?: number | undefined; }