@space-cow-media/spellbook-client
Version:
An Open Api generated client for the Commander Spellbook backend REST API.
37 lines (36 loc) • 1.12 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.
*/
/**
* * `N` - New
* * `D` - Draft
* * `NR` - Needs Review
* * `OK` - Ok
* * `E` - Example
* * `R` - Restore
* * `NW` - Not Working
* @export
* @enum {string}
*/
export declare enum VariantStatusEnum {
N = "N",
D = "D",
Nr = "NR",
Ok = "OK",
E = "E",
R = "R",
Nw = "NW"
}
export declare function instanceOfVariantStatusEnum(value: any): boolean;
export declare function VariantStatusEnumFromJSON(json: any): VariantStatusEnum;
export declare function VariantStatusEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): VariantStatusEnum;
export declare function VariantStatusEnumToJSON(value?: VariantStatusEnum | null): any;
export declare function VariantStatusEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): VariantStatusEnum;