@space-cow-media/spellbook-client
Version:
An Open Api generated client for the Commander Spellbook backend REST API.
39 lines (38 loc) • 1.22 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 WebsiteProperty
*/
export interface WebsiteProperty {
/**
*
* @type {string}
* @memberof WebsiteProperty
*/
readonly key: string;
/**
* Comma-separated list of values
* @type {string}
* @memberof WebsiteProperty
*/
value: string;
}
/**
* Check if a given object implements the WebsiteProperty interface.
*/
export declare function instanceOfWebsiteProperty(value: object): value is WebsiteProperty;
export declare function WebsitePropertyFromJSON(json: any): WebsiteProperty;
export declare function WebsitePropertyFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebsiteProperty;
export declare function WebsitePropertyToJSON(json: any): WebsiteProperty;
export declare function WebsitePropertyToJSONTyped(value?: Omit<WebsiteProperty, 'key'> | null, ignoreDiscriminator?: boolean): any;