@space-cow-media/spellbook-client
Version:
An Open Api generated client for the Commander Spellbook backend REST API.
52 lines (51 loc) • 1.55 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 { Template } from './template';
/**
*
* @export
* @interface PaginatedTemplateList
*/
export interface PaginatedTemplateList {
/**
*
* @type {number}
* @memberof PaginatedTemplateList
*/
count: number;
/**
*
* @type {string}
* @memberof PaginatedTemplateList
*/
next: string | null;
/**
*
* @type {string}
* @memberof PaginatedTemplateList
*/
previous: string | null;
/**
*
* @type {Array<Template>}
* @memberof PaginatedTemplateList
*/
results: Array<Template>;
}
/**
* Check if a given object implements the PaginatedTemplateList interface.
*/
export declare function instanceOfPaginatedTemplateList(value: object): value is PaginatedTemplateList;
export declare function PaginatedTemplateListFromJSON(json: any): PaginatedTemplateList;
export declare function PaginatedTemplateListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedTemplateList;
export declare function PaginatedTemplateListToJSON(json: any): PaginatedTemplateList;
export declare function PaginatedTemplateListToJSONTyped(value?: PaginatedTemplateList | null, ignoreDiscriminator?: boolean): any;