Optional
realtime: RealtimeSystem option object with mandantory fragments.
Response wrapped in [[IResult]]
Example
const option: ISystemOption = {
category: 'alarm.type.mapping',
key: 'temp_to_high'
};
(async () => {
const {data, res} = await systemOptionsService.detail(option);
})();
Gets the list of system options filtered by parameters.
Object containing filters for querying system options.
Example
const filter: object = {
pageSize: 100,
withTotalPages: true
};
(async () => {
const {data, res, paging} = await systemOptionsService.list(filter);
})();
Response wrapped in [[IResultList]]
Gets the details of given system option.