UNPKG

@space-cow-media/spellbook-client

Version:

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

52 lines (51 loc) 1.74 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 { VariantSuggestion } from './variantSuggestion'; /** * * @export * @interface PaginatedVariantSuggestionList */ export interface PaginatedVariantSuggestionList { /** * * @type {number} * @memberof PaginatedVariantSuggestionList */ count: number; /** * * @type {string} * @memberof PaginatedVariantSuggestionList */ next: string | null; /** * * @type {string} * @memberof PaginatedVariantSuggestionList */ previous: string | null; /** * * @type {Array<VariantSuggestion>} * @memberof PaginatedVariantSuggestionList */ results: Array<VariantSuggestion>; } /** * Check if a given object implements the PaginatedVariantSuggestionList interface. */ export declare function instanceOfPaginatedVariantSuggestionList(value: object): value is PaginatedVariantSuggestionList; export declare function PaginatedVariantSuggestionListFromJSON(json: any): PaginatedVariantSuggestionList; export declare function PaginatedVariantSuggestionListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedVariantSuggestionList; export declare function PaginatedVariantSuggestionListToJSON(json: any): PaginatedVariantSuggestionList; export declare function PaginatedVariantSuggestionListToJSONTyped(value?: PaginatedVariantSuggestionList | null, ignoreDiscriminator?: boolean): any;