@space-cow-media/spellbook-client
Version:
An Open Api generated client for the Commander Spellbook backend REST API.
45 lines (44 loc) • 1.25 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.
*/
/**
*
* @export
* @interface VariantPrices
*/
export interface VariantPrices {
/**
*
* @type {string}
* @memberof VariantPrices
*/
tcgplayer: string;
/**
*
* @type {string}
* @memberof VariantPrices
*/
cardkingdom: string;
/**
*
* @type {string}
* @memberof VariantPrices
*/
cardmarket: string;
}
/**
* Check if a given object implements the VariantPrices interface.
*/
export declare function instanceOfVariantPrices(value: object): value is VariantPrices;
export declare function VariantPricesFromJSON(json: any): VariantPrices;
export declare function VariantPricesFromJSONTyped(json: any, ignoreDiscriminator: boolean): VariantPrices;
export declare function VariantPricesToJSON(json: any): VariantPrices;
export declare function VariantPricesToJSONTyped(value?: VariantPrices | null, ignoreDiscriminator?: boolean): any;