UNPKG

@space-cow-media/spellbook-client

Version:

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

33 lines (32 loc) 1.45 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 FeatureProducedInVariantSuggestionRequest */ export interface FeatureProducedInVariantSuggestionRequest { /** * Feature name * @type {string} * @memberof FeatureProducedInVariantSuggestionRequest */ feature: string; } /** * Check if a given object implements the FeatureProducedInVariantSuggestionRequest interface. */ export declare function instanceOfFeatureProducedInVariantSuggestionRequest(value: object): value is FeatureProducedInVariantSuggestionRequest; export declare function FeatureProducedInVariantSuggestionRequestFromJSON(json: any): FeatureProducedInVariantSuggestionRequest; export declare function FeatureProducedInVariantSuggestionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): FeatureProducedInVariantSuggestionRequest; export declare function FeatureProducedInVariantSuggestionRequestToJSON(json: any): FeatureProducedInVariantSuggestionRequest; export declare function FeatureProducedInVariantSuggestionRequestToJSONTyped(value?: FeatureProducedInVariantSuggestionRequest | null, ignoreDiscriminator?: boolean): any;