Skip to content

Commit d0de64a

Browse files
Merge pull request #82 from regulaforensics/be6b64cc
Change group id type
2 parents 0a6dae3 + ce2c80c commit d0de64a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/models/process-param-attributes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import { QualityConfig } from './quality-config';
1717

1818
/**
19-
* Whether to evaluate attributes, such as age and emotions.
19+
* If set, the selected attributes, such as age or emotions, are evaluated.
2020
* @export
2121
* @interface ProcessParamAttributes
2222
*/

src/models/search-parameters.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ export interface SearchParameters {
2929
'createPerson'?: SearchParametersCreatePerson;
3030
/**
3131
* IDs of the groups in which the search is performed.
32-
* @type {Array<number>}
32+
* @type {Array<string>}
3333
* @memberof SearchParameters
3434
*/
35-
'groupIds'?: Array<number>;
35+
'groupIds'?: Array<string>;
3636
}
3737

0 commit comments

Comments
 (0)