@space-cow-media/spellbook-client
Version:
An Open Api generated client for the Commander Spellbook backend REST API.
52 lines (51 loc) • 1.86 kB
TypeScript
/**
* 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 { VariantUpdateSuggestion } from './variantUpdateSuggestion';
/**
*
* @export
* @interface PaginatedVariantUpdateSuggestionList
*/
export interface PaginatedVariantUpdateSuggestionList {
/**
*
* @type {number}
* @memberof PaginatedVariantUpdateSuggestionList
*/
count: number;
/**
*
* @type {string}
* @memberof PaginatedVariantUpdateSuggestionList
*/
next: string | null;
/**
*
* @type {string}
* @memberof PaginatedVariantUpdateSuggestionList
*/
previous: string | null;
/**
*
* @type {Array<VariantUpdateSuggestion>}
* @memberof PaginatedVariantUpdateSuggestionList
*/
results: Array<VariantUpdateSuggestion>;
}
/**
* Check if a given object implements the PaginatedVariantUpdateSuggestionList interface.
*/
export declare function instanceOfPaginatedVariantUpdateSuggestionList(value: object): value is PaginatedVariantUpdateSuggestionList;
export declare function PaginatedVariantUpdateSuggestionListFromJSON(json: any): PaginatedVariantUpdateSuggestionList;
export declare function PaginatedVariantUpdateSuggestionListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedVariantUpdateSuggestionList;
export declare function PaginatedVariantUpdateSuggestionListToJSON(json: any): PaginatedVariantUpdateSuggestionList;
export declare function PaginatedVariantUpdateSuggestionListToJSONTyped(value?: PaginatedVariantUpdateSuggestionList | null, ignoreDiscriminator?: boolean): any;