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