UNPKG

@space-cow-media/spellbook-client

Version:

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

39 lines (38 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 VariantAlias */ export interface VariantAlias { /** * Unique id of this variant alias * @type {string} * @memberof VariantAlias */ id: string; /** * Variant this alias redirects to * @type {string} * @memberof VariantAlias */ variant: string | null; } /** * Check if a given object implements the VariantAlias interface. */ export declare function instanceOfVariantAlias(value: object): value is VariantAlias; export declare function VariantAliasFromJSON(json: any): VariantAlias; export declare function VariantAliasFromJSONTyped(json: any, ignoreDiscriminator: boolean): VariantAlias; export declare function VariantAliasToJSON(json: any): VariantAlias; export declare function VariantAliasToJSONTyped(value?: VariantAlias | null, ignoreDiscriminator?: boolean): any;