|
10 | 10 | */ |
11 | 11 | class GetEmbeddingRequest |
12 | 12 | { |
| 13 | + /** |
| 14 | + * @param string[] $ids Optional IDs of the items to get. |
| 15 | + * @param array<string, mixed> $where Optional where clause to filter items by. |
| 16 | + * @param array<string, mixed> $whereDocument Optional where clause to filter items by. |
| 17 | + * @param string $sort Optional sort items. |
| 18 | + * @param int $limit Optional limit on the number of items to get. |
| 19 | + * @param int $offset Optional offset on the number of items to get. |
| 20 | + * @param string[] $include Optional list of items to include in the response. |
| 21 | + */ |
13 | 22 | public function __construct( |
14 | | - /** |
15 | | - * Optional IDs of the items to get. |
16 | | - * |
17 | | - * @var string[] |
18 | | - */ |
19 | 23 | public readonly ?array $ids = null, |
20 | | - |
21 | | - /** |
22 | | - * Optional where clause to filter items by. |
23 | | - * |
24 | | - * @var array<string, mixed> |
25 | | - */ |
26 | 24 | public readonly ?array $where = null, |
27 | | - |
28 | | - /** |
29 | | - * Optional where clause to filter items by. |
30 | | - * |
31 | | - * @var array<string, mixed> |
32 | | - */ |
33 | 25 | public readonly ?array $whereDocument = null, |
34 | | - |
35 | | - /** |
36 | | - * Sort items. |
37 | | - */ |
38 | 26 | public readonly ?string $sort = null, |
39 | | - |
40 | | - /** |
41 | | - * Optional limit on the number of items to get. |
42 | | - */ |
43 | 27 | public readonly ?int $limit = null, |
44 | | - |
45 | | - /** |
46 | | - * Optional offset on the number of items to get. |
47 | | - */ |
48 | 28 | public readonly ?int $offset = null, |
49 | | - |
50 | | - /** |
51 | | - * Optional list of items to include in the response. |
52 | | - * |
53 | | - * @var string[] |
54 | | - */ |
55 | 29 | public readonly ?array $include = null, |
56 | 30 | ) {} |
57 | 31 |
|
|
0 commit comments