@space-cow-media/spellbook-client
Version:
An Open Api generated client for the Commander Spellbook backend REST API.
39 lines (38 loc) • 1.1 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 CardInDeck
*/
export interface CardInDeck {
/**
*
* @type {string}
* @memberof CardInDeck
*/
card: string;
/**
*
* @type {number}
* @memberof CardInDeck
*/
quantity: number;
}
/**
* Check if a given object implements the CardInDeck interface.
*/
export declare function instanceOfCardInDeck(value: object): value is CardInDeck;
export declare function CardInDeckFromJSON(json: any): CardInDeck;
export declare function CardInDeckFromJSONTyped(json: any, ignoreDiscriminator: boolean): CardInDeck;
export declare function CardInDeckToJSON(json: any): CardInDeck;
export declare function CardInDeckToJSONTyped(value?: CardInDeck | null, ignoreDiscriminator?: boolean): any;