mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 00:27:41 +01:00
27 lines
709 B
TypeScript
27 lines
709 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
export type SmartCollectionSchema = {
|
|
name: string;
|
|
description?: string;
|
|
rom_ids: Array<number>;
|
|
rom_count: number;
|
|
path_cover_small: (string | null);
|
|
path_cover_large: (string | null);
|
|
path_covers_small: Array<string>;
|
|
path_covers_large: Array<string>;
|
|
is_public?: boolean;
|
|
is_favorite?: boolean;
|
|
is_virtual?: boolean;
|
|
is_smart?: boolean;
|
|
created_at: string;
|
|
updated_at: string;
|
|
id: number;
|
|
filter_criteria: Record<string, any>;
|
|
filter_summary: string;
|
|
user_id: number;
|
|
owner_username: string;
|
|
};
|
|
|