UNPKG

@space-cow-media/spellbook-client

Version:

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

45 lines (44 loc) 1.2 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. */ /** * * @export * @interface CardPrices */ export interface CardPrices { /** * * @type {string} * @memberof CardPrices */ tcgplayer: string; /** * * @type {string} * @memberof CardPrices */ cardkingdom: string; /** * * @type {string} * @memberof CardPrices */ cardmarket: string; } /** * Check if a given object implements the CardPrices interface. */ export declare function instanceOfCardPrices(value: object): value is CardPrices; export declare function CardPricesFromJSON(json: any): CardPrices; export declare function CardPricesFromJSONTyped(json: any, ignoreDiscriminator: boolean): CardPrices; export declare function CardPricesToJSON(json: any): CardPrices; export declare function CardPricesToJSONTyped(value?: CardPrices | null, ignoreDiscriminator?: boolean): any;