UNPKG

@space-cow-media/spellbook-client

Version:

An Open Api generated client for the Commander Spellbook backend REST API.

52 lines (51 loc) 1.53 kB
/** * Commander Spellbook API * API for Commander Spellbook, the combo database engine for Magic: The Gathering * * The version of the OpenAPI document: 4.8.19 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Feature } from './feature'; /** * * @export * @interface PaginatedFeatureList */ export interface PaginatedFeatureList { /** * * @type {number} * @memberof PaginatedFeatureList */ count: number; /** * * @type {string} * @memberof PaginatedFeatureList */ next: string | null; /** * * @type {string} * @memberof PaginatedFeatureList */ previous: string | null; /** * * @type {Array<Feature>} * @memberof PaginatedFeatureList */ results: Array<Feature>; } /** * Check if a given object implements the PaginatedFeatureList interface. */ export declare function instanceOfPaginatedFeatureList(value: object): value is PaginatedFeatureList; export declare function PaginatedFeatureListFromJSON(json: any): PaginatedFeatureList; export declare function PaginatedFeatureListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedFeatureList; export declare function PaginatedFeatureListToJSON(json: any): PaginatedFeatureList; export declare function PaginatedFeatureListToJSONTyped(value?: PaginatedFeatureList | null, ignoreDiscriminator?: boolean): any;