We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94b79a2 commit 60b9d57Copy full SHA for 60b9d57
src/resources/hris/directory.ts
@@ -99,11 +99,21 @@ export interface DirectoryListParams extends IndividualsPageParams {
99
entity_ids?: Array<string>;
100
}
101
102
-export interface DirectoryListIndividualsParams extends IndividualsPageParams {
+export interface DirectoryListIndividualsParams {
103
/**
104
* The entity IDs to specify which entities' data to access.
105
*/
106
107
+
108
+ /**
109
+ * Number of employees to return (defaults to all)
110
+ */
111
+ limit?: number;
112
113
114
+ * Index to start from (defaults to 0)
115
116
+ offset?: number;
117
118
119
export declare namespace Directory {
0 commit comments