@thunderfat/backend-sdk
Version:
TypeScript SDK for ThunderFat Nutrition Management API
11 lines (10 loc) • 318 B
TypeScript
import type { EntityModelFactura } from './EntityModelFactura';
import type { Links } from './Links';
import type { PageMetadata } from './PageMetadata';
export type PagedModelEntityModelFactura = {
_embedded?: {
facturas?: Array<EntityModelFactura>;
};
_links?: Links;
page?: PageMetadata;
};