/** Generic list response returned by list endpoints. */ export interface IListResponse { /** Total number of items matching the request. Only set when count was requested. */ count?: number; value: T[]; } //# sourceMappingURL=IListResponse.d.ts.map