Type Alias: SearchGroup<TResource>
type SearchGroup<TResource> = {
href?: string;
next?: string;
name?: string;
groupId?: string;
data: TResource[];
};
Defined in: endpoints/Search/types.ts:195
Type Parameters
| Type Parameter | Default type |
|---|---|
TResource extends Resource | Resource |
Properties
href?
optional href: string;
Defined in: endpoints/Search/types.ts:196
next?
optional next: string;
Defined in: endpoints/Search/types.ts:197
name?
optional name: string;
Defined in: endpoints/Search/types.ts:198
groupId?
optional groupId: string;
Defined in: endpoints/Search/types.ts:199
data
data: TResource[];
Defined in: endpoints/Search/types.ts:200