@space-cow-media/spellbook-client
Version:
An Open Api generated client for the Commander Spellbook backend REST API.
33 lines (32 loc) • 1.36 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 FeatureProducedInVariantSuggestion
*/
export interface FeatureProducedInVariantSuggestion {
/**
* Feature name
* @type {string}
* @memberof FeatureProducedInVariantSuggestion
*/
feature: string;
}
/**
* Check if a given object implements the FeatureProducedInVariantSuggestion interface.
*/
export declare function instanceOfFeatureProducedInVariantSuggestion(value: object): value is FeatureProducedInVariantSuggestion;
export declare function FeatureProducedInVariantSuggestionFromJSON(json: any): FeatureProducedInVariantSuggestion;
export declare function FeatureProducedInVariantSuggestionFromJSONTyped(json: any, ignoreDiscriminator: boolean): FeatureProducedInVariantSuggestion;
export declare function FeatureProducedInVariantSuggestionToJSON(json: any): FeatureProducedInVariantSuggestion;
export declare function FeatureProducedInVariantSuggestionToJSONTyped(value?: FeatureProducedInVariantSuggestion | null, ignoreDiscriminator?: boolean): any;