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